:root {
  color-scheme: dark;
  --bg: #08090d;
  --bg-soft: #101218;
  --panel: #f8fafc;
  --ink: #f8fafc;
  --ink-dark: #10131b;
  --muted: #a4adbd;
  --muted-dark: #5f6878;
  --line: rgba(248, 250, 252, 0.14);
  --line-dark: rgba(16, 19, 27, 0.12);
  --cyan: #12bfd0;
  --green: #24c978;
  --coral: #ff6b55;
  --violet: #8b5cf6;
  --blue: #3b82f6;
  --yellow: #f5c542;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(248, 250, 252, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(18, 191, 208, 0.18), transparent 30%),
    radial-gradient(circle at 25% 75%, rgba(255, 107, 85, 0.14), transparent 28%),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  color: var(--ink);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(8, 9, 13, 0.78);
  border-color: var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
}

.brand-mark-image {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  min-width: 0;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.06);
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(248, 250, 252, 0.12);
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink-dark);
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.88fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 74px);
  margin: -22px auto 0;
  padding: clamp(64px, 9vw, 118px) 0 clamp(36px, 5vw, 64px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 10vw, 9rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.hero-lede,
.section-heading p,
.studio-copy p,
.contact p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 950;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--panel);
  color: var(--ink-dark);
  box-shadow: 0 18px 48px rgba(248, 250, 252, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.06);
  color: var(--ink);
}

.button-large {
  min-height: 62px;
  padding: 0 26px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 0;
}

.proof-grid div {
  min-height: 98px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.06);
}

.proof-grid dt {
  font-size: 1.45rem;
  font-weight: 950;
}

.proof-grid dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.app-lab {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
}

.app-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.orbit-fish {
  top: 11%;
  left: 4%;
  color: var(--cyan);
}

.orbit-fit {
  top: 4%;
  right: 14%;
  color: var(--green);
}

.orbit-rush {
  right: 0;
  top: 42%;
  color: var(--coral);
}

.orbit-habit {
  bottom: 12%;
  right: 12%;
  color: var(--violet);
}

.orbit-preview {
  bottom: 20%;
  left: 0;
  color: var(--blue);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(72vw, 330px);
  padding: 13px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 42px;
  background: #030407;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.55);
  transform: rotate(3deg);
}

.phone-notch {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 3;
  width: 84px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05060a;
}

.phone-screen {
  --tone: var(--green);
  display: grid;
  min-height: 588px;
  align-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 54px 22px 24px;
  border-radius: 31px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--tone) 72%, #111827), #111827 68%),
    #111827;
}

.screen-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.86rem;
  font-weight: 950;
}

.screen-visual {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.visual-ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: conic-gradient(var(--yellow) 0 74%, rgba(255, 255, 255, 0.18) 74% 100%);
}

.visual-ring::after {
  content: "";
  position: absolute;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.58);
  transform: translate(34px, 34px);
}

.visual-bars {
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  height: 102px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(248, 250, 252, 0.9) 0 42%, transparent 42%) 12% 100% / 14% 78% no-repeat,
    linear-gradient(to top, rgba(248, 250, 252, 0.9) 0 74%, transparent 74%) 35% 100% / 14% 90% no-repeat,
    linear-gradient(to top, rgba(248, 250, 252, 0.9) 0 48%, transparent 48%) 58% 100% / 14% 72% no-repeat,
    linear-gradient(to top, rgba(248, 250, 252, 0.9) 0 67%, transparent 67%) 82% 100% / 14% 86% no-repeat,
    rgba(255, 255, 255, 0.12);
}

.visual-card {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 82px;
  height: 54px;
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.22);
}

.phone-screen p {
  margin-bottom: 8px;
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1.04;
}

.phone-screen small {
  display: block;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.app-switcher {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  gap: 8px;
  width: min(230px, 50%);
}

.app-switch {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: left;
}

.app-switch:hover,
.app-switch:focus-visible,
.app-switch.is-active {
  background: var(--panel);
  color: var(--ink-dark);
}

.app-marquee {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: -26px auto 0;
  padding-bottom: clamp(50px, 8vw, 96px);
}

.app-marquee span {
  display: grid;
  min-height: 58px;
  place-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.06);
  color: var(--muted);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.brand-kit,
.section,
.portfolio-grid,
.studio,
.contact,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.brand-kit {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: 0 0 clamp(62px, 8vw, 100px);
}

.brand-kit-copy h2 {
  max-width: 9.5ch;
  margin-bottom: 18px;
}

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

.brand-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.04)),
    rgba(248, 250, 252, 0.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.brand-card-logo {
  grid-row: span 2;
  align-content: space-between;
}

.brand-card-logo img {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(248, 250, 252, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 191, 208, 0.18), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 85, 0.18), transparent 32%),
    #050917;
}

.brand-card-social {
  gap: 18px;
}

.brand-preview {
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background: #050917;
}

.brand-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-card-copy p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-download {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.06);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.brand-download:hover,
.brand-download:focus-visible {
  background: var(--panel);
  color: var(--ink-dark);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: clamp(38px, 6vw, 80px) 0 clamp(24px, 4vw, 42px);
}

.section-heading h2 {
  max-width: 880px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(70px, 9vw, 118px);
}

.portfolio-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  grid-column: span 3;
  gap: clamp(18px, 3vw, 34px);
  min-height: 360px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink-dark);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.portfolio-card:first-child {
  grid-column: span 6;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 27, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(16, 19, 27, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.portfolio-visual,
.portfolio-copy {
  position: relative;
  z-index: 1;
}

.portfolio-visual {
  display: grid;
  min-height: 290px;
  align-content: center;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink-dark);
}

.fish .portfolio-visual {
  background: linear-gradient(145deg, #0d5261, #10131b);
}

.fit .portfolio-visual {
  background: linear-gradient(145deg, #15683f, #10131b);
}

.rush .portfolio-visual {
  background: linear-gradient(145deg, #8a2f25, #10131b);
}

.habit .portfolio-visual {
  background: linear-gradient(145deg, #44218d, #10131b);
}

.preview .portfolio-visual {
  background: linear-gradient(145deg, #214f9d, #10131b);
}

.portfolio-copy {
  align-self: end;
}

.app-type {
  margin-bottom: 12px;
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-copy p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted-dark);
}

.icon-fish,
.icon-ring,
.icon-arrow,
.icon-plus,
.icon-play {
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.92);
}

.icon-fish::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 25px;
  width: 33px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
}

.icon-fish::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 27px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--cyan);
}

.icon-ring::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 10px solid var(--green);
  border-radius: 50%;
}

.icon-arrow::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 29px;
  width: 34px;
  height: 12px;
  background: var(--coral);
}

.icon-arrow::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 22px;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  border-top: 12px solid var(--coral);
  border-right: 12px solid var(--coral);
}

.icon-plus::before,
.icon-plus::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--violet);
}

.icon-plus::before {
  left: 18px;
  top: 30px;
  width: 34px;
  height: 10px;
}

.icon-plus::after {
  left: 30px;
  top: 18px;
  width: 10px;
  height: 34px;
}

.icon-play::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 21px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--blue);
}

.mock-line,
.mock-task,
.mock-message {
  display: block;
  width: 62%;
  height: 15px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.28);
}

.mock-line.wide {
  width: 88%;
}

.mock-map,
.mock-window,
.mock-grid {
  display: block;
  width: 100%;
  height: 96px;
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.16);
}

.mock-bar {
  display: inline-block;
  width: 18%;
  border-radius: 999px 999px 4px 4px;
  background: rgba(248, 250, 252, 0.75);
}

.mock-bar.a {
  height: 74px;
}

.mock-bar.b {
  height: 128px;
}

.mock-bar.c {
  height: 96px;
}

.mock-task {
  width: 92%;
  height: 30px;
}

.mock-task.short {
  width: 72%;
}

.mock-task.done {
  width: 82%;
  background: rgba(36, 201, 120, 0.65);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: auto;
  padding: 10px;
}

.mock-grid::before {
  content: "";
  display: block;
  grid-column: 1 / -1;
  height: 112px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle, rgba(248, 250, 252, 0.82) 0 22%, transparent 23%) 0 0 / 25% 50%,
    rgba(248, 250, 252, 0.1);
}

.mock-message {
  width: 92%;
  height: 54px;
  border-radius: var(--radius);
}

.mock-window {
  height: 126px;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(310px, 1fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.studio-copy h2 {
  max-width: 720px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.06);
}

.process-list span {
  color: var(--yellow);
  font-weight: 950;
}

.process-list h3,
.process-list p {
  grid-column: 2;
}

.process-list h3 {
  margin-top: -30px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  margin-bottom: 24px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 191, 208, 0.18), rgba(139, 92, 246, 0.16)),
    rgba(248, 250, 252, 0.07);
}

.contact h2 {
  max-width: 900px;
}

.contact .button {
  margin-top: 12px;
}

.legal {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
  padding: 0 0 clamp(58px, 8vw, 96px);
}

.legal-copy h2 {
  margin-bottom: 18px;
}

.legal-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 191, 208, 0.1), rgba(255, 107, 85, 0.08)),
    rgba(248, 250, 252, 0.04);
}

.legal-note {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.legal-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.05);
}

.legal-list dt {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
}

.legal-list a {
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links {
  display: inline-flex;
  gap: 16px;
}

.site-footer a {
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(245, 197, 66, 0.5);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .brand-kit,
  .legal,
  .section-heading,
  .studio {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

  .app-lab {
    min-height: 610px;
  }

  .portfolio-card,
  .portfolio-card:first-child {
    grid-column: span 6;
  }

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

  .brand-card-logo {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  body {
    background-size: 46px 46px, 46px 46px, auto, auto, auto;
  }

  .site-header {
    top: 8px;
    width: min(100% - 24px, 1180px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 58px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark-image {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero,
  .app-marquee,
  .brand-kit,
  .section,
  .portfolio-grid,
  .studio,
  .contact,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    margin-top: -14px;
    padding-top: 58px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.75rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: space-between;
  }

  .button {
    width: 100%;
  }

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

  .app-lab {
    min-height: 560px;
    overflow: hidden;
  }

  .phone-shell {
    width: min(76vw, 250px);
    transform: rotate(2deg) translateX(12px);
  }

  .phone-screen {
    min-height: 430px;
  }

  .screen-visual {
    min-height: 220px;
  }

  .visual-ring {
    width: 136px;
    height: 136px;
  }

  .visual-ring::after {
    width: 88px;
    height: 88px;
    transform: translate(24px, 24px);
  }

  .app-switcher {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 18px;
  }

  .app-switch {
    text-align: center;
  }

  .orbit-card {
    display: none;
  }

  .app-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -12px;
  }

  .app-marquee span:last-child {
    grid-column: 1 / -1;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-kit {
    padding-bottom: 72px;
  }

  .brand-card {
    padding: 16px;
  }

  .portfolio-visual {
    min-height: 230px;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list h3,
  .process-list p {
    grid-column: 1;
  }

  .process-list h3 {
    margin-top: 0;
  }
}

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