:root {
  color-scheme: light;
  --ink: #111114;
  --muted: #66666f;
  --line: rgba(20, 20, 25, 0.1);
  --paper: #ffffff;
  --soft: #f5f5f7;
  --blue: #087cff;
  --blue-dark: #0064df;
  --radius: 32px;
  --shadow: 0 30px 80px rgba(31, 36, 50, 0.14), 0 3px 14px rgba(31, 36, 50, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 8%, rgba(108, 170, 255, 0.14), transparent 25rem),
    linear-gradient(#fbfbfd, #fff 52rem);
  content: "";
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(30, 30, 40, 0.04);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.brand-logo-small {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.brand-logo-large {
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  border-radius: 18px;
  filter: drop-shadow(0 14px 30px rgba(0, 108, 255, 0.28));
}

/* Legacy CSS mark (kept if referenced elsewhere) */
.app-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(145deg, #2a91ff, #0067ed);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.45), 0 3px 8px rgba(0, 105, 235, 0.25);
}

.app-mark span {
  position: absolute;
  width: 11px;
  height: 14px;
  top: 8px;
  border: 1.5px solid #fff;
  border-radius: 2px;
}

.app-mark span:first-child {
  left: 5px;
}

.app-mark span:last-child {
  right: 5px;
}

.app-mark span:first-child::after {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 4px;
  border-top: 1.5px solid white;
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  color: #55555d;
  font-size: 14px;
  font-weight: 550;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #000;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 13px;
}

.button-dark {
  background: #161618;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.13);
}

.button-dark:hover {
  background: #000;
}

.button-primary {
  background: linear-gradient(180deg, #208cff, #0878f5);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 112, 240, 0.24), inset 0 1px rgba(255, 255, 255, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(0, 112, 240, 0.3), inset 0 1px rgba(255, 255, 255, 0.25);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 56px;
  padding-top: 88px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.kicker {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 112, 240, 0.12);
  border-radius: 999px;
  background: rgba(231, 242, 255, 0.72);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.12);
}

.hero h1 {
  margin: 26px 0 24px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.068em;
  font-weight: 740;
}

.hero h1 span {
  display: inline-block;
  color: #8a8a92;
}

.hero-lede {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #34343a;
  font-size: 15px;
  font-weight: 650;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.microcopy {
  margin: 18px 0 0;
  color: #9898a0;
  font-size: 12px;
  font-weight: 550;
}

.microcopy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.microcopy a:hover {
  color: #1d1d1f;
}

.cta-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 35% 28%, #acd3ff, #3b97ff 40%, rgba(0, 114, 246, 0.12) 70%);
  opacity: 0.55;
}

.orb-two {
  right: -20%;
  bottom: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(152, 112, 255, 0.26), transparent 68%);
}

.device-stack {
  position: relative;
  width: 100%;
  height: 480px;
  transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.device {
  position: absolute;
  margin: 0;
  padding: 10px 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.46);
  border-radius: 20px 20px 13px 13px;
  background: linear-gradient(145deg, #3d3e42, #151518);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.device::after {
  position: absolute;
  right: -3%;
  bottom: -10px;
  left: -3%;
  height: 11px;
  border-radius: 2px 2px 12px 12px;
  background: linear-gradient(#dbdce0, #87898e);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  content: "";
}

.device-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 11px 11px 5px 5px;
  background: #000;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-front {
  z-index: 2;
  top: 84px;
  right: -18px;
  width: min(530px, 92%);
  height: 370px;
  transform: translateZ(35px) rotate(1.5deg);
}

.device-back {
  top: 0;
  left: -18px;
  width: min(420px, 74%);
  height: 294px;
  opacity: 0.94;
  transform: translateZ(-15px) rotate(-4deg);
}

.camera {
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 50%;
  width: 32px;
  height: 8px;
  border-radius: 0 0 6px 6px;
  background: #111;
  transform: translateX(-50%);
}

.device-wallpaper {
  position: relative;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(circle at 28% 70%, #ff7a8a 0, transparent 32%),
    radial-gradient(circle at 78% 25%, #4d7cff 0, transparent 42%),
    #162453;
}

.wallpaper-window {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(248, 248, 252, 0.83);
  box-shadow: 0 12px 22px rgba(8, 15, 50, 0.24);
  backdrop-filter: blur(8px);
}

.window-one {
  top: 28px;
  left: 34px;
  width: 53%;
  height: 48%;
}

.window-two {
  right: 26px;
  bottom: 24px;
  width: 46%;
  height: 54%;
}

.connection-line {
  position: absolute;
  z-index: 5;
  top: 266px;
  left: 23%;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  filter: drop-shadow(0 0 6px #2493ff);
  transform: rotate(32deg) translateZ(70px);
}

.connection-line span {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

.connection-line span:first-child { left: 8px; }
.connection-line span:nth-child(2) { left: 42px; }
.connection-line span:last-child { right: 8px; }

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(248, 248, 250, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 28px;
}

.proof-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-inline: 32px;
  border-right: 1px solid var(--line);
}

.proof-grid div:first-child {
  padding-left: 0;
}

.proof-grid div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-grid strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.proof-grid span {
  color: #888890;
  font-size: 12px;
}

.section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 16px;
}

.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  background: #f5f5f7;
}

.feature-card h3,
.step h3 {
  margin: 24px 0 10px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-card p,
.step p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.feature-large {
  min-height: 480px;
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #eff6ff, #f8faff 54%, #e9f2ff);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.45), 0 8px 18px rgba(0, 0, 0, 0.09);
}

.feature-icon svg {
  width: 27px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon.blue { background: linear-gradient(145deg, #3c9cff, #0879ee); }
.feature-icon.violet { background: linear-gradient(145deg, #a875ff, #7047e8); }
.feature-icon.green { background: linear-gradient(145deg, #56d879, #20aa4e); }
.feature-icon.orange { background: linear-gradient(145deg, #ffb34d, #ff7f1f); }

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.arrangement-visual {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 47%;
  height: 82%;
}

.arrangement-visual .screen {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 22px 50px rgba(0, 70, 170, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.screen-primary {
  right: 0;
  bottom: 15%;
  width: 60%;
  height: 58%;
  background: linear-gradient(145deg, #167fff, #005fdc);
}

.screen-secondary {
  top: 5%;
  left: 0;
  width: 48%;
  height: 44%;
  background: linear-gradient(145deg, #82bfff, #3a8bf4);
}

.arrangement-visual svg {
  position: absolute;
  z-index: 3;
  top: 43%;
  left: 31%;
  width: 35%;
  fill: none;
  stroke: white;
  stroke-width: 3;
  filter: drop-shadow(0 3px 8px rgba(0, 57, 145, 0.5));
}

.feature-network {
  background: linear-gradient(150deg, #faf7ff, #f2ecff);
}

.network-tags {
  position: absolute;
  right: 40px;
  bottom: 34px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.network-tags span {
  padding: 12px 17px;
  border: 1px solid rgba(93, 55, 186, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #6f49ce;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(86, 53, 163, 0.08);
}

.network-tags i {
  height: 1px;
  flex: 1;
  background: repeating-linear-gradient(90deg, #9879df 0 5px, transparent 5px 10px);
}

.feature-native {
  background: linear-gradient(150deg, #f6fbf7, #eaf8ee);
}

.native-stat {
  position: absolute;
  right: 42px;
  bottom: 26px;
  display: flex;
  align-items: baseline;
  color: rgba(27, 155, 65, 0.18);
  line-height: 1;
}

.native-stat strong {
  font-size: 118px;
  letter-spacing: -0.08em;
}

.native-stat span {
  margin-left: 10px;
  font-size: 28px;
  font-weight: 750;
}

.feature-free {
  min-height: 300px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  background: #151516;
  color: white;
}

.feature-free p {
  color: #aaaab2;
}

.free-word {
  position: absolute;
  right: 4%;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(100px, 18vw, 230px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.setup-section {
  background: var(--soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.step-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0f0f2;
  color: #6f6f77;
  font-size: 13px;
  font-weight: 700;
}

.step-illustration {
  height: 155px;
  margin: 34px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #f5f5f7;
}

.roles {
  gap: 0;
  padding: 40px;
}

.role {
  flex: 1;
  padding: 11px;
  text-align: center;
  border-radius: 10px;
  color: #8b8b93;
  font-size: 14px;
  font-weight: 650;
}

.role.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 120, 250, 0.24);
}

.address {
  position: relative;
  flex-direction: column;
  gap: 7px;
}

.address-label {
  color: #9999a1;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.address strong {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.address i {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.12);
}

.live {
  gap: 10px;
  color: #1aa34a;
  font-size: 14px;
}

.live span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #32c759;
  box-shadow: 0 0 0 5px rgba(50, 199, 89, 0.15);
}

.gallery-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 60px;
}

.gallery-copy h2 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.gallery-copy > p:nth-of-type(2) {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-tab {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: #6e6e76;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.gallery-tab:hover {
  color: #111;
  border-color: rgba(0, 0, 0, 0.2);
}

.gallery-tab.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* Screenshots already include a real macOS window chrome — no fake frame. */
.gallery-shot {
  position: relative;
  overflow: visible;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.gallery-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transition: opacity 140ms ease, transform 240ms ease;
}

.gallery-shot img.changing {
  opacity: 0.35;
  transform: scale(0.995);
}

.cta-section {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 70px;
  border-radius: 40px;
  background: #090a0d;
  color: #fff;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 820px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(37, 140, 255, 0.6), rgba(50, 82, 255, 0.22) 35%, transparent 68%);
  filter: blur(20px);
  transform: translateY(45%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.app-mark-large {
  width: 66px;
  height: 66px;
  margin: 0 auto 26px;
  border-radius: 17px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.45), 0 14px 30px rgba(0, 108, 255, 0.32);
}

.app-mark-large span {
  top: 17px;
  width: 24px;
  height: 32px;
  border-width: 3px;
  border-radius: 4px;
}

.app-mark-large span:first-child { left: 11px; }
.app-mark-large span:last-child { right: 11px; }
.app-mark-large span:first-child::after {
  top: 12px;
  left: 21px;
  width: 8px;
  border-width: 3px;
}

/* brand-logo-large already defined above */

.cta-section .kicker {
  color: #72b8ff;
}

.cta-section h2 {
  margin-bottom: 32px;
}

.button-light {
  background: #fff;
  color: #111;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.button-light:hover {
  background: #f1f1f3;
}

.cta-note {
  margin: 17px 0 0;
  color: #878791;
  font-size: 12px;
}

.footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  color: #8b8b93;
  font-size: 13px;
  text-align: center;
}

.footer p a {
  color: #48484f;
  font-weight: 650;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: #66666e;
  font-size: 13px;
  font-weight: 600;
}

.app-mark-small {
  width: 25px;
  height: 25px;
  border-radius: 7px;
}

.app-mark-small span {
  top: 7px;
  width: 9px;
  height: 12px;
}

.app-mark-small span:first-child { left: 4px; }
.app-mark-small span:last-child { right: 4px; }
.app-mark-small span:first-child::after { top: 4px; left: 7px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.3, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

.reveal-delay {
  transition-delay: 110ms;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow,
  .hero-actions {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .feature-large {
    padding-bottom: 340px;
  }

  .feature-copy {
    max-width: none;
  }

  .arrangement-visual {
    right: 8%;
    bottom: 0;
    width: 70%;
    height: 360px;
  }

  .gallery-section {
    grid-template-columns: 1fr;
  }

  .gallery-copy {
    max-width: 660px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, 620px);
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(46px, 14vw, 67px);
    letter-spacing: -0.065em;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .microcopy {
    line-height: 1.5;
  }

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

  .device-stack {
    height: 350px;
    transform: none;
  }

  .device-front {
    top: 85px;
    right: 0;
    width: 90%;
    height: 245px;
  }

  .device-back {
    left: 0;
    width: 74%;
    height: 205px;
  }

  .connection-line {
    top: 185px;
  }

  .orb-one {
    width: 360px;
    height: 360px;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .proof-grid div,
  .proof-grid div:first-child,
  .proof-grid div:last-child {
    padding-inline: 18px;
  }

  .proof-grid div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid div:nth-child(odd) {
    padding-left: 0;
  }

  .proof-grid div:nth-child(even) {
    padding-right: 0;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .bento-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 350px;
    padding: 30px;
  }

  .feature-large {
    grid-column: auto;
    min-height: 610px;
    padding-bottom: 280px;
  }

  .arrangement-visual {
    right: 4%;
    width: 92%;
    height: 300px;
  }

  .feature-free {
    grid-column: auto;
  }

  .free-word {
    right: -3%;
    bottom: -7%;
  }

  .step {
    min-height: 390px;
  }

  .gallery-section {
    gap: 38px;
  }

  .gallery-shot img {
    border-radius: 10px;
  }

  .cta-section {
    min-height: 570px;
    margin-bottom: 40px;
    border-radius: 28px;
  }

  .cta-content {
    padding-inline: 20px;
  }

  .footer {
    min-height: 180px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding-block: 30px;
  }

  .footer .brand > span:last-child {
    display: inline;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
