:root {
  --smt-bg: #141210;
  --smt-bg-soft: #1d1a17;
  --smt-surface: rgb(45 35 28 / 62%);
  --smt-surface-strong: rgb(58 46 35 / 78%);
  --smt-surface-solid: #2b221b;
  --smt-border: rgb(246 224 188 / 14%);
  --smt-border-bright: rgb(246 224 188 / 30%);
  --smt-text: #f0e4d3;
  --smt-muted: #c0ae99;
  --smt-lime: #bfd64a;
  --smt-amber: #b56b2b;
  --smt-champagne: #e2c9a0;
  --smt-shadow-ambient: 0 40px 70px rgb(7 5 4 / 48%);
  --smt-shadow-depth:
    0 18px 30px rgb(0 0 0 / 28%), 0 2px 0 rgb(255 238 210 / 8%) inset,
    0 -14px 22px rgb(0 0 0 / 20%) inset;
  --smt-shadow-float:
    0 26px 34px rgb(0 0 0 / 26%), 0 56px 80px rgb(0 0 0 / 20%);
  --smt-radius-xl: 32px;
  --smt-radius-lg: 24px;
  --smt-radius-md: 18px;
  --smt-radius-sm: 14px;
  --smt-shell: min(1180px, calc(100% - 32px));
}
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  font-size: 15px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 14% 12%,
      rgb(191 214 74 / 11%),
      transparent 0 22%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgb(181 107 43 / 17%),
      transparent 0 28%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgb(245 225 194 / 6%),
      transparent 0 32%
    ),
    linear-gradient(180deg, #110f0d 0, #17130f 52%, #100d0a 100%);
  color: var(--smt-text);
  font-family: Manrope, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgb(255 240 214 / 5%), transparent 18%),
    linear-gradient(315deg, rgb(0 0 0 / 28%), transparent 28%);
  pointer-events: none;
  z-index: -1;
}
a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.smt-shell {
  width: var(--smt-shell);
  margin-inline: auto;
}
.smt-aura,
.smt-grid-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
}
.smt-grid-noise {
  background-image:
    linear-gradient(rgb(255 255 255 / 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    circle at center,
    rgb(0 0 0 / 90%),
    transparent 90%
  );
}
.smt-aura--one {
  background: radial-gradient(
    circle at 18% 14%,
    rgb(191 214 74 / 18%),
    transparent 0 26%
  );
}
.smt-aura--two {
  background: radial-gradient(
    circle at 78% 20%,
    rgb(181 107 43 / 20%),
    transparent 0 30%
  );
}
.smt-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 18px;
}
.smt-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid var(--smt-border);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgb(255 244 220 / 6%), rgb(255 244 220 / 1%)),
    rgb(34 28 22 / 66%);
  box-shadow: var(--smt-shadow-depth);
  backdrop-filter: blur(18px);
}
.smt-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.smt-brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgb(240 228 211 / 20%), rgb(240 228 211 / 3%)),
    linear-gradient(225deg, rgb(191 214 74 / 26%), rgb(181 107 43 / 34%));
  border: 1px solid var(--smt-border-bright);
  box-shadow:
    0 6px 12px rgb(255 235 205 / 10%) inset,
    0 -10px 16px rgb(0 0 0 / 28%) inset,
    0 18px 26px rgb(0 0 0 / 26%);
  color: var(--smt-text);
  font-family: Syne, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.smt-brand__copy {
  display: grid;
  gap: 3px;
}
.smt-brand__copy strong {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.smt-brand__copy small {
  color: var(--smt-muted);
  font-size: 0.74rem;
}
.smt-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.smt-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--smt-muted);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}
.smt-nav a:focus-visible,
.smt-nav a:hover {
  color: var(--smt-text);
  transform: translateY(-2px);
  background: rgb(255 242 214 / 4%);
}
.smt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--smt-border-bright);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
  transform-style: preserve-3d;
}
.smt-button:focus-visible,
.smt-button:hover {
  transform: translateY(-4px) rotateX(8deg);
  box-shadow:
    0 14px 24px rgb(0 0 0 / 28%),
    0 4px 0 rgb(255 239 210 / 10%) inset;
}
.smt-button--primary {
  background:
    linear-gradient(180deg, rgb(255 241 215 / 18%), transparent),
    linear-gradient(135deg, rgb(191 214 74 / 80%), rgb(181 107 43 / 92%));
  color: #21170f;
  border-color: rgb(242 223 186 / 32%);
}
.smt-button--ghost,
.smt-button--secondary {
  background: rgb(255 244 220 / 3%);
  color: var(--smt-text);
}
.smt-hero {
  position: relative;
  padding: 70px 0 48px;
}
.smt-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}
.smt-kicker {
  margin: 0 0 14px;
  color: var(--smt-champagne);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.smt-hero__copy h1 {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.smt-company__intro h2,
.smt-contact__main h2,
.smt-section__head h2,
.smt-sector__lead h2 {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.smt-lead {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--smt-muted);
  font-size: clamp(0.82rem, 0.85vw + 0.7rem, 0.95rem);
}
.smt-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.smt-statbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}
.smt-card,
.smt-fact-card,
.smt-float-tile,
.smt-glass,
.smt-mini-card,
.smt-panel,
.smt-proof__rail span,
.smt-statbar li,
.smt-step,
.smt-volume-card {
  border: 1px solid var(--smt-border);
  backdrop-filter: blur(18px);
}
.smt-statbar li {
  padding: 18px 18px 16px;
  border-radius: var(--smt-radius-md);
  background:
    linear-gradient(180deg, rgb(255 245 225 / 8%), rgb(255 245 225 / 2%)),
    var(--smt-surface);
  box-shadow: var(--smt-shadow-depth);
}
.smt-statbar strong {
  display: block;
  margin-bottom: 8px;
  color: var(--smt-text);
  font-size: clamp(1.05rem, 1.15vw + 0.8rem, 1.55rem);
  font-weight: 800;
}
.smt-statbar span {
  color: var(--smt-muted);
  font-size: 0.85rem;
}
.smt-hero__visual {
  position: relative;
  min-height: 650px;
  perspective: 1800px;
}
.smt-hero__orbit {
  position: absolute;
  border: 1px solid rgb(255 242 214 / 10%);
  border-radius: 50%;
  transform: rotateX(73deg);
  box-shadow: 0 0 0 1px rgb(255 242 214 / 3%) inset;
}
.smt-hero__orbit--one {
  inset: 90px 24px 92px;
}
.smt-hero__orbit--two {
  inset: 40px 72px 140px;
  opacity: 0.55;
}
.smt-volume-card {
  position: absolute;
  left: 50%;
  width: min(100%, 360px);
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgb(255 247 227 / 12%), transparent 24%),
    linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 18%)),
    var(--smt-surface-strong);
  box-shadow:
    var(--smt-shadow-float),
    0 2px 0 rgb(255 244 216 / 10%) inset,
    0 -18px 26px rgb(0 0 0 / 16%) inset;
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}
.smt-volume-card::after,
.smt-volume-card::before {
  position: absolute;
  content: "";
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
}
.smt-volume-card::before {
  background: linear-gradient(135deg, rgb(255 245 220 / 16%), transparent 38%);
  opacity: 0.9;
}
.smt-volume-card::after {
  inset: auto 22px 10px 22px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(0 0 0 / 26%) 0, transparent 72%);
  filter: blur(8px);
}
.smt-volume-card:hover {
  transform: translate(-50%, 0) rotateX(10deg) rotateY(-8deg) translateY(-10px);
  box-shadow:
    0 36px 46px rgb(0 0 0 / 28%),
    0 72px 92px rgb(0 0 0 / 18%);
}
.smt-volume-card--back {
  top: 120px;
  transform: translateX(-50%) rotateY(-20deg) rotateX(12deg) translateZ(-40px);
}
.smt-volume-card--mid {
  top: 246px;
  transform: translateX(-50%) rotateY(18deg) rotateX(10deg) translateZ(0);
}
.smt-volume-card--front {
  top: 390px;
  transform: translateX(-50%) rotateY(-14deg) rotateX(14deg) translateZ(80px);
}
.smt-volume-card__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgb(255 243 216 / 6%);
  color: var(--smt-champagne);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.smt-volume-card strong {
  display: block;
  font-family: Syne, sans-serif;
  font-size: clamp(1.3rem, 1.75vw, 1.85rem);
  line-height: 1;
}
.smt-volume-card small {
  display: block;
  margin-top: 12px;
  color: var(--smt-muted);
  font-size: 0.86rem;
}
.smt-hero__cluster {
  position: absolute;
  inset: 0;
}
.smt-float-tile {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgb(255 245 225 / 10%), transparent),
    rgb(36 29 23 / 70%);
  box-shadow: var(--smt-shadow-depth);
  transition: transform 220ms ease;
}
.smt-float-tile span {
  display: block;
  margin-bottom: 4px;
  color: var(--smt-muted);
  font-size: 0.72rem;
}
.smt-float-tile strong {
  font-size: 0.9rem;
}
.smt-float-tile:hover {
  transform: translateY(-6px) rotateX(8deg);
}
.smt-float-tile--one {
  top: 78px;
  right: 30px;
}
.smt-float-tile--two {
  left: 14px;
  bottom: 158px;
}
.smt-float-tile--three {
  right: 54px;
  bottom: 58px;
}
.smt-proof {
  padding: 14px 0 18px;
}
.smt-proof__rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  overflow: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.smt-proof__rail::-webkit-scrollbar {
  display: none;
}
.smt-proof__rail span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgb(255 246 225 / 10%), transparent),
    rgb(37 29 24 / 70%);
  color: var(--smt-muted);
  font-size: clamp(0.66rem, 1.1vw, 0.75rem);
  box-shadow: var(--smt-shadow-depth);
  transition:
    transform 180ms ease,
    color 180ms ease;
}
.smt-proof__rail span:hover {
  transform: translateY(-4px);
  color: var(--smt-text);
}
.smt-signal-strip {
  padding: clamp(28px, 4vw, 48px) 0;
  position: relative;
  overflow: hidden;
}
.smt-signal-strip__text {
  margin: 0;
  text-align: center;
  font-family: Syne, sans-serif;
  font-size: clamp(0.8rem, 1vw + 0.55rem, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smt-champagne);
  opacity: 0.92;
}
.smt-signal-strip__line {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(200px, 60%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(191 214 74 / 50%),
    rgb(181 107 43 / 50%),
    transparent
  );
  margin-top: 20px;
}
.smt-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.smt-principle {
  padding: 26px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}
.smt-principle:hover {
  border-color: rgb(246 224 188 / 28%);
  transform: translateY(-8px) rotateX(5deg);
  box-shadow:
    0 24px 30px rgb(0 0 0 / 26%),
    0 4px 0 rgb(255 242 214 / 10%) inset;
}
.smt-principle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgb(255 248 232 / 14%), transparent 50%),
    linear-gradient(145deg, rgb(181 107 43 / 32%), rgb(191 214 74 / 20%));
  box-shadow:
    0 6px 12px rgb(255 244 220 / 8%) inset,
    0 -8px 14px rgb(0 0 0 / 22%) inset;
  color: #24180f;
  font-family: Syne, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}
.smt-principle h3 {
  margin: 0;
  font-size: clamp(0.95rem, 0.95vw + 0.75rem, 1.08rem);
  line-height: 1.2;
}
.smt-principle p {
  margin: 0;
  flex: 1;
  font-size: 0.82rem;
  color: var(--smt-muted);
}
.smt-engagement {
  position: relative;
  margin-top: 36px;
}
.smt-engagement__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}
.smt-engagement__connector {
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0,
    rgb(191 214 74 / 25%) 20%,
    rgb(181 107 43 / 35%) 50%,
    rgb(191 214 74 / 25%) 80%,
    transparent 100%
  );
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}
.smt-engagement__step {
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}
.smt-engagement__step:hover {
  border-color: rgb(246 224 188 / 28%);
  transform: translateY(-8px);
  box-shadow:
    0 24px 30px rgb(0 0 0 / 26%),
    0 4px 0 rgb(255 242 214 / 10%) inset;
}
.smt-engagement__num {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(255 243 216 / 8%);
  color: var(--smt-champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
}
.smt-engagement__step h3 {
  margin: 0;
  font-size: clamp(1rem, 0.95vw + 0.8rem, 1.15rem);
  line-height: 1.15;
}
.smt-engagement__step p {
  margin: 0;
  flex: 1;
  font-size: 0.82rem;
  color: var(--smt-muted);
}
.smt-insight-strip {
  padding: clamp(36px, 5vw, 56px) 0;
  background: linear-gradient(
    90deg,
    rgb(191 214 74 / 6%) 0,
    transparent 30%,
    transparent 70%,
    rgb(181 107 43 / 8%) 100%
  );
  border-top: 1px solid rgb(246 224 188 / 8%);
  border-bottom: 1px solid rgb(246 224 188 / 8%);
}
.smt-insight-strip__text {
  margin: 0;
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  font-size: clamp(0.95rem, 1.05vw + 0.72rem, 1.2rem);
  line-height: 1.5;
  color: var(--smt-text);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.smt-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.smt-diff-card {
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.smt-diff-card__num {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgb(255 248 232 / 12%), transparent 50%),
    linear-gradient(145deg, rgb(181 107 43 / 28%), rgb(191 214 74 / 18%));
  color: var(--smt-text);
  font-family: Syne, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.smt-diff-card h3 {
  margin: 0;
  font-size: clamp(0.95rem, 0.95vw + 0.75rem, 1.12rem);
  line-height: 1.2;
}
.smt-diff-card p {
  margin: 0;
  flex: 1;
  font-size: 0.84rem;
}
.smt-approach {
  padding: 36px 32px;
  max-width: 820px;
  margin: 0 auto;
}
.smt-approach h2 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  line-height: 1.15;
}
.smt-approach p {
  margin: 0;
}
.smt-approach p:last-of-type {
  margin-top: 14px;
}
.smt-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.smt-assurance__item {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.smt-assurance__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgb(255 248 232 / 14%), transparent 50%),
    linear-gradient(145deg, rgb(191 214 74 / 22%), rgb(181 107 43 / 28%));
  box-shadow:
    0 6px 12px rgb(255 244 220 / 8%) inset,
    0 -8px 14px rgb(0 0 0 / 22%) inset;
}
.smt-assurance__item h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.2;
}
.smt-assurance__item p {
  margin: 0;
  font-size: 0.82rem;
  max-width: 28ch;
}
.smt-perspective {
  padding: clamp(32px, 5vw, 56px) 0;
}
.smt-quote {
  padding: 32px 40px;
  text-align: center;
  border-left: 4px solid rgb(181 107 43 / 50%);
}
.smt-quote p {
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw + 0.8rem, 1.32rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--smt-text);
}
.smt-section {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0;
}
.smt-section--offset {
  padding-top: 36px;
}
.smt-section--dense {
  padding-top: 36px;
}
.smt-section--closing {
  padding-top: 48px;
  padding-bottom: 100px;
}
.smt-section__head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.smt-section__head--left {
  margin-inline: 0;
  text-align: left;
}
.smt-company__intro h2,
.smt-contact__main h2,
.smt-section__head h2,
.smt-sector__lead h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.4rem);
  line-height: 1.02;
}
.smt-card p,
.smt-company__intro p,
.smt-contact__main p,
.smt-contact__side p,
.smt-footer p,
.smt-mini-card p,
.smt-panel p,
.smt-section__head p:last-child,
.smt-sector__lead p,
.smt-step p {
  color: var(--smt-muted);
}
.smt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.smt-card,
.smt-fact-card,
.smt-glass,
.smt-mini-card,
.smt-panel,
.smt-step {
  position: relative;
  overflow: hidden;
  border-radius: var(--smt-radius-lg);
  background:
    linear-gradient(180deg, rgb(255 244 218 / 10%), rgb(255 244 218 / 1%)),
    var(--smt-surface);
  box-shadow: var(--smt-shadow-depth), var(--smt-shadow-ambient);
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}
.smt-card::before,
.smt-fact-card::before,
.smt-glass::before,
.smt-mini-card::before,
.smt-panel::before,
.smt-step::before {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgb(255 248 232 / 14%), transparent 34%);
  pointer-events: none;
}
.smt-card:hover,
.smt-fact-card:hover,
.smt-glass:hover,
.smt-mini-card:hover,
.smt-panel:hover,
.smt-step:hover {
  border-color: rgb(246 224 188 / 28%);
  transform: translateY(-10px) rotateX(7deg) rotateY(-6deg);
  box-shadow:
    0 24px 30px rgb(0 0 0 / 26%),
    0 64px 90px rgb(0 0 0 / 22%),
    0 4px 0 rgb(255 242 214 / 10%) inset;
}
.smt-card--capability {
  padding: 28px;
}
.smt-card--lifted {
  transform: translateY(26px);
}
.smt-card--lifted:hover {
  transform: translateY(14px) rotateX(7deg) rotateY(-6deg);
}
.smt-icon-3d {
  width: 82px;
  height: 82px;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgb(255 248 232 / 20%), transparent 44%),
    linear-gradient(145deg, rgb(191 214 74 / 20%), rgb(181 107 43 / 22%));
  box-shadow:
    0 8px 12px rgb(255 244 220 / 10%) inset,
    0 -10px 16px rgb(0 0 0 / 28%) inset,
    0 18px 26px rgb(0 0 0 / 20%);
}
.smt-icon-3d svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 10px rgb(0 0 0 / 30%));
}
.smt-icon-3d path,
.smt-icon-3d polygon:first-of-type,
.smt-icon-3d rect {
  fill: #ecd3a8;
  stroke: #f4e4ca;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.smt-icon-3d polygon:nth-of-type(2) {
  fill: #b98042;
  stroke: #dcae73;
  stroke-width: 2.2;
}
.smt-icon-3d polygon:nth-of-type(3) {
  fill: #8d5726;
  stroke: #c18e54;
  stroke-width: 2.2;
}
.smt-card h3,
.smt-mini-card h3,
.smt-panel h3,
.smt-step h3 {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 0.9vw + 0.88rem, 1.5rem);
  line-height: 1.1;
}
.smt-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}
.smt-panel {
  padding: 26px;
  min-height: 220px;
}
.smt-panel--tall {
  grid-row: span 2;
  min-height: 468px;
}
.smt-panel--wide {
  grid-column: span 2;
}
.smt-panel--accent {
  background:
    linear-gradient(180deg, rgb(191 214 74 / 12%), transparent 28%),
    linear-gradient(180deg, rgb(255 244 218 / 10%), rgb(255 244 218 / 1%)),
    rgb(52 42 29 / 72%);
}
.smt-panel__eyebrow {
  margin: 0 0 16px;
  color: var(--smt-champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.smt-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.smt-step {
  padding: 24px;
}
.smt-step:nth-child(2) {
  margin-top: 28px;
}
.smt-step:nth-child(3) {
  margin-top: 56px;
}
.smt-step:nth-child(4) {
  margin-top: 18px;
}
.smt-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgb(255 248 232 / 18%), transparent 44%),
    linear-gradient(145deg, rgb(181 107 43 / 42%), rgb(191 214 74 / 26%));
  box-shadow:
    0 8px 12px rgb(255 244 220 / 10%) inset,
    0 -10px 18px rgb(0 0 0 / 24%) inset,
    0 14px 22px rgb(0 0 0 / 22%);
  color: #24180f;
  font-family: Syne, sans-serif;
  font-weight: 800;
}
.smt-company {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}
.smt-glass {
  padding: 28px;
}
.smt-bullets {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.smt-bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--smt-text);
}
.smt-bullets li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #f9ead0, #bc742f 76%);
  box-shadow: 0 0 0 4px rgb(255 242 214 / 4%);
}
.smt-company__facts {
  display: grid;
  gap: 18px;
}
.smt-contact__label,
.smt-fact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--smt-champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.smt-contact__side strong,
.smt-fact-card a,
.smt-fact-card strong {
  color: var(--smt-text);
  font-size: 1rem;
  line-height: 1.35;
  text-decoration: none;
}
.smt-sector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.smt-sector__stack {
  display: grid;
  gap: 18px;
}
.smt-mini-card {
  padding: 22px;
}
.smt-mini-card:nth-child(2) {
  margin-left: 34px;
}
.smt-mini-card:nth-child(3) {
  margin-right: 26px;
}
.smt-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.smt-contact__main,
.smt-contact__side {
  min-height: 100%;
}
.smt-contact__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.smt-map-card {
  position: relative;
  min-height: 190px;
  margin-top: 26px;
  border: 1px solid rgb(246 224 188 / 10%);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgb(255 242 214 / 6%) 0 12%, transparent 12% 100%),
    linear-gradient(90deg, rgb(255 255 255 / 0.03) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 0.03) 1px, transparent 1px),
    rgb(28 23 19 / 70%);
  background-size:
    auto,
    38px 38px,
    38px 38px,
    auto;
  box-shadow:
    inset 0 1px 0 rgb(255 243 216 / 10%),
    inset 0 -18px 26px rgb(0 0 0 / 18%);
}
.smt-map-card__pin {
  position: absolute;
  top: 34%;
  left: 56%;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(180deg, #f5e1bf, #b56b2b);
  transform: rotate(-45deg);
  box-shadow: 0 12px 20px rgb(0 0 0 / 22%);
}
.smt-map-card__pin::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: rgb(20 18 16 / 70%);
}
.smt-map-card__line {
  position: absolute;
  left: 16%;
  right: 18%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgb(191 214 74 / 26%),
    rgb(181 107 43 / 36%)
  );
  box-shadow: 0 4px 10px rgb(0 0 0 / 14%);
}
.smt-map-card__line:first-of-type {
  top: 28%;
  transform: rotate(-10deg);
}
.smt-map-card__line--short {
  top: 64%;
  left: 28%;
  right: 24%;
  transform: rotate(12deg);
}
.smt-footer {
  padding: 0 0 38px;
}
.smt-footer__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--smt-border);
  border-radius: var(--smt-radius-lg);
  background:
    linear-gradient(180deg, rgb(255 244 218 / 7%), rgb(255 244 218 / 2%)),
    rgb(30 25 20 / 68%);
  box-shadow: var(--smt-shadow-depth);
  backdrop-filter: blur(18px);
}
.smt-footer strong {
  display: block;
  margin-bottom: 8px;
  font-family: Syne, sans-serif;
  font-size: 1.22rem;
}
.smt-footer p {
  max-width: 44ch;
  margin: 0;
}
.smt-footer__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--smt-muted);
}
.smt-footer__meta span {
  padding: 10px 14px;
  border: 1px solid rgb(246 224 188 / 10%);
  border-radius: 999px;
  background: rgb(255 244 218 / 3%);
}
.smt-policy-page {
  padding: clamp(48px, 7vw, 96px) 0 100px;
}
.smt-policy {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.smt-policy__title {
  margin: 0 0 18px;
  text-align: center;
  font-family: Syne, sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.smt-policy__card {
  width: 100%;
  padding: clamp(28px, 3.2vw, 40px);
}
.smt-policy__card:hover {
  transform: none;
  box-shadow: var(--smt-shadow-depth), var(--smt-shadow-ambient);
  border-color: var(--smt-border);
}
.smt-policy__card h2 {
  margin: 0 0 16px;
  font-family: Syne, sans-serif;
  font-size: clamp(1.15rem, 1.4vw + 0.85rem, 1.45rem);
  line-height: 1.2;
}
.smt-policy__card p,
.smt-policy__card li {
  color: var(--smt-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.smt-policy__card p {
  margin: 0 0 14px;
}
.smt-policy__card p:last-child {
  margin-bottom: 0;
}
.smt-policy__card ul {
  margin: 0 0 14px;
  padding-left: 1.25rem;
  display: grid;
  gap: 8px;
}
.smt-policy__card ul:last-child {
  margin-bottom: 0;
}
.smt-policy__card a {
  color: var(--smt-champagne);
  text-underline-offset: 3px;
}
@media (max-width: 1100px) {
  .smt-company,
  .smt-contact,
  .smt-hero__layout,
  .smt-sector {
    grid-template-columns: 1fr;
  }
  .smt-assurance,
  .smt-card-grid,
  .smt-diff-grid,
  .smt-engagement__track,
  .smt-principles,
  .smt-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .smt-engagement__connector {
    display: none;
  }
  .smt-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .smt-panel--tall,
  .smt-panel--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
  .smt-hero__visual {
    min-height: 720px;
  }
}
@media (max-width: 820px) {
  .smt-footer__row,
  .smt-header__row {
    border-radius: 28px;
  }
  .smt-footer__row,
  .smt-header__row,
  .smt-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .smt-nav {
    justify-content: center;
  }
  .smt-button,
  .smt-nav a {
    width: 100%;
  }
  .smt-hero {
    padding-top: 42px;
  }
  .smt-assurance,
  .smt-card-grid,
  .smt-diff-grid,
  .smt-engagement__track,
  .smt-mosaic,
  .smt-principles,
  .smt-statbar,
  .smt-steps {
    grid-template-columns: 1fr;
  }
  .smt-card--lifted,
  .smt-mini-card:nth-child(2),
  .smt-mini-card:nth-child(3),
  .smt-step:nth-child(2),
  .smt-step:nth-child(3),
  .smt-step:nth-child(4) {
    margin: 0;
    transform: none;
  }
  .smt-hero__visual {
    min-height: 650px;
  }
  .smt-volume-card {
    width: min(100%, 320px);
  }
  .smt-volume-card--back {
    top: 98px;
  }
  .smt-volume-card--mid {
    top: 240px;
  }
  .smt-volume-card--front {
    top: 382px;
  }
}
@media (max-width: 560px) {
  .smt-shell {
    width: min(100% - 20px, 1180px);
  }
  .smt-header {
    padding-top: 10px;
  }
  .smt-card,
  .smt-fact-card,
  .smt-footer__row,
  .smt-glass,
  .smt-header__row,
  .smt-mini-card,
  .smt-panel,
  .smt-policy__card,
  .smt-step {
    padding: 20px;
  }
  .smt-hero__copy h1 {
    font-size: clamp(1.5rem, 7vw, 2.3rem);
  }
  .smt-hero__visual {
    min-height: 580px;
  }
  .smt-volume-card {
    width: min(100%, 280px);
    padding: 18px;
  }
  .smt-volume-card--back {
    top: 100px;
  }
  .smt-volume-card--mid {
    top: 220px;
  }
  .smt-volume-card--front {
    top: 340px;
  }
  .smt-float-tile--one {
    top: 34px;
    right: 10px;
  }
  .smt-float-tile--two {
    left: 6px;
    bottom: 118px;
  }
  .smt-float-tile--three {
    right: 14px;
    bottom: 18px;
  }
  .smt-contact__actions {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::after,
  ::before {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
  }
}
