:root {
  color-scheme: light;
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-strong: #eef5f2;
  --ink: #13211f;
  --muted: #65736f;
  --line: rgba(19, 33, 31, 0.12);
  --coral: #ff6b57;
  --teal: #10a99a;
  --lime: #b7e35b;
  --sky: #4ca7ff;
  --shadow: 0 26px 80px rgba(24, 45, 42, 0.13);
  --radius: 8px;
  --max: 1180px;
}

body.dark {
  color-scheme: dark;
  --bg: #0d1211;
  --surface: #151d1b;
  --surface-strong: #1e2b28;
  --ink: #f5fbf8;
  --muted: #a7b8b2;
  --line: rgba(245, 251, 248, 0.14);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 92px;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topbar.scrolled {
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: #070c12;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: #dce5e8;
  color: #10161d;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #070c12;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #070c12;
  color: #ffffff;
  cursor: pointer;
}

.icon-button .moon,
body.dark .icon-button .sun {
  display: none;
}

body.dark .icon-button .moon {
  display: inline;
}

.menu-button {
  display: inline-grid;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 25;
  top: 76px;
  left: 14px;
  right: 14px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 13px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
}

.mobile-menu a:hover {
  background: var(--surface-strong);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 0 58px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 7.2vw, 86px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--coral), #ff9e57);
  color: #180905;
  box-shadow: 0 18px 36px rgba(255, 107, 87, 0.25);
}

.secondary-button {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.signal-strip span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% -4% 4% 5%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(16, 169, 154, 0.22), rgba(183, 227, 91, 0.16));
  filter: blur(18px);
}

.hero-visual img {
  position: relative;
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.live-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.live-card strong {
  font-size: 30px;
  line-height: 1;
}

.live-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card-a {
  left: -16px;
  bottom: 82px;
}

.card-b {
  right: -10px;
  top: 92px;
}

.hero-editorial {
  display: block;
  width: 100%;
  min-height: auto;
  padding: 92px 0 0;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: clamp(560px, calc(100svh - 92px), 690px);
  overflow: hidden;
  background: #eef5f7;
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(760px, calc(100% - 180px));
  height: 7px;
  border-radius: 999px 999px 0 0;
  background: #070c12;
  transform: translateX(-50%);
  z-index: 7;
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-video-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 245, 247, 0.92) 0%, rgba(238, 245, 247, 0.70) 40%, rgba(238, 245, 247, 0.26) 76%),
    linear-gradient(180deg, rgba(238, 245, 247, 0.34), rgba(238, 245, 247, 0.82));
  pointer-events: none;
}

.hero-kicker {
  position: absolute;
  z-index: 5;
  top: 108px;
  left: 48px;
  margin: 0;
  color: #7a8589;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.mega-word {
  position: absolute;
  z-index: 6;
  left: 48px;
  top: 132px;
  color: #070c12;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  user-select: none;
}

.hero-drone {
  position: absolute;
  z-index: 4;
  --drone-shift: 0;
  right: 9%;
  left: auto;
  top: 148px;
  width: min(360px, 30vw);
  max-width: none;
  filter: drop-shadow(0 34px 40px rgba(5, 13, 19, 0.18));
  transform: translateX(var(--drone-shift));
  animation: heroFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-statement {
  position: absolute;
  z-index: 6;
  left: clamp(42px, 9vw, 160px);
  top: 326px;
  bottom: auto;
  width: min(620px, 52vw);
}

.hero-statement h1 {
  margin: 0;
  color: #070c12;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.95;
  font-weight: 900;
}

.hero-statement p {
  margin: 16px 0 0;
  color: #070c12;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.08;
  font-weight: 900;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  left: 48px;
  bottom: 132px;
  color: #9aa4a8;
  font-size: 24px;
  font-weight: 900;
}

.hero-proof {
  position: absolute;
  z-index: 6;
  display: grid;
  min-width: 156px;
  gap: 3px;
  padding: 15px 18px;
  border: 1px solid rgba(7, 12, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #070c12;
  box-shadow: 0 20px 52px rgba(7, 12, 18, 0.10);
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  font-size: 25px;
  line-height: 1;
}

.hero-proof span {
  color: #647277;
  font-size: 12px;
  font-weight: 900;
}

.hero-proof-a {
  right: 28%;
  top: 190px;
}

.hero-proof-b {
  right: 8%;
  bottom: 112px;
}

.hero-summary {
  position: absolute;
  z-index: 6;
  left: clamp(42px, 9vw, 160px);
  top: 592px;
  right: auto;
  bottom: auto;
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-summary p {
  display: none;
}

.hero-summary .hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.hero-summary .primary-button,
.hero-summary .secondary-button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateX(var(--drone-shift)) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateX(var(--drone-shift)) translateY(-16px) rotate(1deg);
  }
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
  scroll-margin-top: 112px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.profile-card,
.focus-panel,
.project-card,
.proof-card,
.timeline-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: 0 16px 48px rgba(24, 45, 42, 0.08);
}

.profile-card,
.focus-panel {
  padding: clamp(22px, 3vw, 34px);
}

.profile-card h3,
.focus-panel h3,
.project-card h3,
.timeline-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.profile-card p,
.focus-panel li,
.project-card p,
.project-card li,
.timeline-item p,
.contact-note {
  color: var(--muted);
  line-height: 1.78;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(183, 227, 91, 0.18);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  min-height: 176px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
}

body.dark .metric {
  background: #f5fbf8;
  color: #13211f;
}

.metric strong {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.metric span {
  color: var(--coral);
  font-size: 22px;
  font-weight: 900;
}

.metric p {
  margin: 20px 0 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  background: var(--teal);
  color: #06110f;
  border-color: transparent;
}

.experience-section {
  width: 100%;
  max-width: none;
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(238, 245, 247, 0.16), rgba(7, 12, 18, 0) 96px),
    #070c12;
  color: #eef5f7;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 8vw, 120px);
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
}

.experience-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.experience-heading h2 {
  margin: 0;
  color: #f5fbf8;
  font-size: clamp(58px, 9vw, 124px);
  line-height: 0.9;
  font-weight: 900;
}

.experience-heading p:last-child {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(238, 245, 247, 0.62);
  font-size: 17px;
  line-height: 1.75;
}

.experience-list {
  display: grid;
  gap: 26px;
}

.experience-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0 34px;
  border-bottom: 1px solid rgba(238, 245, 247, 0.10);
}

.experience-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(238, 245, 247, 0.14);
  border-radius: 16px;
  background: rgba(16, 169, 154, 0.10);
  box-shadow: 0 18px 46px rgba(16, 169, 154, 0.12);
  color: var(--lime);
  font-size: 16px;
  font-weight: 900;
}

.experience-icon img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.experience-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0 0 12px;
  color: #f5fbf8;
  font-size: 24px;
  line-height: 1.24;
}

.experience-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(238, 245, 247, 0.68);
  line-height: 1.85;
}

.phone-stack {
  position: relative;
  min-height: 430px;
  width: min(640px, 100%);
  margin: 0 auto;
}

.phone-shot {
  position: absolute;
  margin: 0;
  width: clamp(190px, 24vw, 270px);
  border-radius: 42px;
  filter: drop-shadow(0 30px 42px rgba(7, 12, 18, 0.18));
  transform: var(--phone-transform);
  transition: transform 220ms ease;
}

.phone-shot:hover {
  transform: var(--phone-transform) translateY(-8px);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-shot figcaption {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  min-width: 92px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #070c12;
  box-shadow: 0 16px 34px rgba(7, 12, 18, 0.10);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(14px);
}

.phone-shot-back {
  --phone-transform: rotate(-6deg) scale(0.92);
  left: 5%;
  top: 48px;
  z-index: 1;
}

.phone-shot-front {
  --phone-transform: translateX(-50%) scale(1.04);
  left: 50%;
  top: 0;
  z-index: 3;
}

.phone-shot-side {
  --phone-transform: rotate(7deg) scale(0.94);
  right: 5%;
  top: 72px;
  z-index: 2;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(22px, 5vw, 76px);
  align-items: center;
  padding-top: 74px;
  padding-bottom: 96px;
}

.proof .section-heading {
  margin-bottom: 0;
}

.proof .section-heading h2 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.94;
}

.proof .phone-shot {
  width: clamp(150px, 17vw, 215px);
}

.proof .phone-shot-back {
  left: 8%;
  top: 68px;
}

.proof .phone-shot-front {
  top: 18px;
}

.proof .phone-shot-side {
  right: 8%;
  top: 82px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-item {
  min-height: 258px;
  padding: 24px;
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--teal);
  font-weight: 900;
}

.contact {
  padding-bottom: 110px;
}

.contact-panel {
  padding: clamp(26px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 107, 87, 0.12), transparent 46%),
    linear-gradient(225deg, rgba(76, 167, 255, 0.14), transparent 44%),
    var(--surface);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.contact-details span {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-strong) 70%, transparent);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .topbar {
    padding: 0 24px;
  }

  .brand strong {
    font-size: 34px;
  }

  .hero-editorial {
    width: 100%;
    padding-top: 92px;
  }

  .hero-stage {
    height: clamp(540px, calc(100svh - 92px), 620px);
  }

  .mega-word {
    left: 24px;
    top: 124px;
    font-size: 38px;
  }

  .hero-drone {
    --drone-shift: 0;
    right: 3%;
    top: 190px;
    width: min(300px, 38vw);
  }

  .hero-statement {
    left: 7%;
    top: 318px;
    bottom: auto;
    width: min(500px, 58vw);
  }

  .hero-proof-a {
    right: 26%;
  }

  .hero-proof-b {
    right: 7%;
    bottom: 114px;
  }

  .hero-summary {
    left: 7%;
    top: 540px;
    right: auto;
    bottom: auto;
    width: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual img {
    min-height: 420px;
  }

  .about-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-layout {
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100% - 48px));
  }

  .experience-heading {
    position: static;
  }

  .phone-stack {
    min-height: 470px;
  }

  .proof {
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100% - 48px));
  }

  .proof .section-heading h2 {
    font-size: clamp(40px, 9vw, 70px);
  }

  .proof .phone-stack {
    min-height: 390px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .topbar {
    height: 72px;
    padding: 0 14px;
  }

  .brand strong {
    font-size: 28px;
  }

  .icon-button,
  .menu-button {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .mobile-menu {
    top: 72px;
  }

  .hero,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 100px;
  }

  .hero-editorial {
    width: 100%;
    min-height: auto;
    padding: 72px 0 0;
  }

  .hero-stage {
    height: clamp(520px, calc(100svh - 72px), 600px);
    border-radius: 0;
  }

  .hero-stage::after {
    width: calc(100% - 84px);
    height: 5px;
  }

  .hero-kicker {
    top: 42px;
    left: 18px;
    font-size: 10px;
  }

  .mega-word {
    left: 18px;
    top: 78px;
    font-size: 30px;
  }

  .hero-drone {
    --drone-shift: 0;
    top: 176px;
    right: -26px;
    left: auto;
    width: 218px;
    max-width: none;
  }

  .hero-statement {
    left: 18px;
    right: 104px;
    top: 250px;
    bottom: auto;
    width: auto;
  }

  .hero-statement h1 {
    font-size: 34px;
  }

  .hero-statement p {
    font-size: 17px;
  }

  .hero-scroll {
    left: 18px;
    bottom: 36px;
    font-size: 18px;
  }

  .hero-proof {
    min-width: 132px;
    padding: 12px 14px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof-a {
    top: 320px;
    right: 14px;
  }

  .hero-proof-b {
    display: none;
  }

  .hero-summary {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 16px;
    width: auto;
    padding: 12px;
  }

  .hero-summary p {
    display: none;
  }

  .hero-summary .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    min-height: 330px;
    border-radius: 18px;
  }

  .live-card {
    min-width: 128px;
    padding: 12px;
  }

  .card-a {
    left: 8px;
    bottom: 24px;
  }

  .card-b {
    right: 8px;
    top: 18px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .timeline,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .experience-section {
    padding: 74px 0;
  }

  .experience-layout {
    width: min(100% - 28px, var(--max));
    gap: 28px;
  }

  .experience-heading h2 {
    font-size: 58px;
  }

  .experience-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0 26px;
  }

  .experience-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 13px;
  }

  .experience-card h3 {
    font-size: 20px;
  }

  .phone-stack {
    min-height: 390px;
  }

  .proof {
    width: min(100% - 28px, var(--max));
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .proof .section-heading h2 {
    font-size: 44px;
  }

  .proof .phone-stack {
    min-height: 310px;
  }

  .phone-shot {
    width: 138px;
  }

  .phone-shot-back {
    left: 0;
    top: 54px;
  }

  .phone-shot-front {
    top: 14px;
  }

  .phone-shot-side {
    right: 0;
    top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
