:root {
  --bg: #090713;
  --bg-deep: #06050c;
  --surface: rgba(24, 20, 38, 0.72);
  --surface-strong: rgba(30, 24, 47, 0.9);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f8f6ff;
  --muted: #a7a1b3;
  --cyan: #24ead5;
  --purple: #a65cff;
  --yellow: #ffd34d;
  --pink: #ec62ff;
  --display: "Space Grotesk", Inter, sans-serif;
  --body: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 9%, rgba(153, 70, 255, 0.18), transparent 31rem),
    radial-gradient(circle at 7% 27%, rgba(18, 222, 203, 0.09), transparent 29rem),
    var(--bg);
  font: 500 16px/1.65 var(--body);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: #07110f;
  background: var(--cyan);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
footer {
  width: min(1190px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(36, 234, 213, 0.3);
  border-radius: 50%;
  color: var(--text);
  background: rgba(14, 12, 22, 0.94);
  box-shadow: 0 0 28px rgba(36, 234, 213, 0.12), inset 0 1px rgba(255, 255, 255, 0.14);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c4bfce;
  font-size: 13px;
  font-weight: 700;
}

nav a:not(.nav-cta):hover,
footer a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(36, 234, 213, 0.4);
  border-radius: 9px;
  color: var(--text);
  background: rgba(36, 234, 213, 0.1);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.nav-cta:hover {
  border-color: var(--cyan);
  background: rgba(36, 234, 213, 0.17);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(510px, 1.1fr);
  min-height: 690px;
  align-items: center;
  gap: 52px;
  padding: 55px 0 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 20px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6.5vw, 88px);
  line-height: 0.97;
}

h1 em {
  display: block;
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 26px rgba(36, 234, 213, 0.24), 2px 2px 0 rgba(62, 43, 108, 0.75);
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

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

.button-primary {
  color: #07110f;
  background: var(--cyan);
  box-shadow: 0 12px 32px rgba(36, 234, 213, 0.2), inset 0 1px rgba(255, 255, 255, 0.48);
}

.button-primary:hover {
  box-shadow: 0 15px 38px rgba(36, 234, 213, 0.3);
}

.button-quiet {
  border-color: var(--line);
  color: #d5d1dd;
  background: rgba(255, 255, 255, 0.025);
}

.button-quiet:hover {
  border-color: var(--line-strong);
}

.button > span {
  font-size: 18px;
}

.built-for {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: #767080;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.built-for strong {
  color: #aaa4b5;
}

.built-for i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--purple);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  perspective: 1100px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
}

.glow-cyan {
  bottom: 7%;
  left: 5%;
  width: 190px;
  height: 150px;
  background: rgba(36, 234, 213, 0.16);
}

.glow-purple {
  top: 15%;
  right: 8%;
  width: 230px;
  height: 230px;
  background: rgba(166, 92, 255, 0.24);
}

.preview-shell {
  position: absolute;
  top: 28px;
  left: 2%;
  width: 95%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(14, 11, 23, 0.88);
  box-shadow: 0 35px 88px rgba(0, 0, 0, 0.47), 0 0 75px rgba(144, 64, 255, 0.12), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateY(-3deg) rotateZ(0.5deg);
}

.preview-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 43px;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  color: #716b7e;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preview-dots {
  display: flex;
  gap: 5px;
}

.preview-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #413a4c;
}

.preview-bar > b {
  justify-self: end;
  color: var(--cyan);
  font-size: 8px;
}

.preview-bar > b i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.preview-stage {
  position: relative;
  aspect-ratio: 16 / 10.1;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 45%, rgba(112, 51, 164, 0.4), transparent 23%),
    linear-gradient(135deg, #11101b, #1c1228 55%, #091719);
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 37px 37px;
}

.stage-title {
  position: absolute;
  top: 27%;
  left: 32%;
  color: rgba(255, 255, 255, 0.11);
  text-align: center;
  transform: rotate(-5deg);
}

.stage-title small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.stage-title strong {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.82;
}

.glass-widget,
.status-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(46, 50, 61, 0.82), rgba(48, 23, 66, 0.75)),
    rgba(17, 14, 26, 0.72);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 12px 27px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.12), 0 0 22px rgba(157, 69, 255, 0.1);
}

.goal-widget {
  position: absolute;
  top: 9%;
  left: 5%;
  width: 39%;
  padding: 11px 13px;
  border-radius: 9px;
}

.widget-label {
  display: block;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.widget-label b {
  margin-right: 4px;
}

.goal-widget > strong {
  display: block;
  margin: 3px 0 7px;
  font-size: 16px;
}

.goal-widget strong small {
  color: #9c96a8;
  font-size: 9px;
}

.goal-track {
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.goal-track span {
  display: block;
  width: 77%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 0 8px var(--cyan);
}

.gift-stack {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 38%;
  height: 47%;
}

.gift-stack .glass-widget {
  position: absolute;
  right: 0;
  left: 0;
  border-radius: 9px;
}

.gift-ghost {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 12px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 8px;
}

.gift-three {
  top: 0;
  height: 34px;
  opacity: 0.3;
  transform: scale(0.82) translateY(-4px);
}

.gift-two {
  top: 23px;
  height: 42px;
  opacity: 0.58;
  transform: scale(0.91);
}

.gift-widget {
  top: 57px;
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-color: rgba(36, 234, 213, 0.32);
}

.gift-icon {
  display: grid;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 9px;
  color: #110a20;
  background: linear-gradient(140deg, #f8e46b, #f391ff 55%, #766bff);
  box-shadow: 0 0 20px rgba(236, 98, 255, 0.36);
}

.gift-widget div,
.supporter-widget div {
  min-width: 0;
}

.gift-widget small,
.supporter-widget small {
  display: block;
  color: #938c9e;
  font-size: 6px;
  text-transform: uppercase;
}

.gift-widget strong,
.supporter-widget strong {
  display: block;
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gift-widget > b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.24);
  font-size: 8px;
}

.supporter-widget {
  position: absolute;
  bottom: 9%;
  left: 6%;
  display: flex;
  width: 44%;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 9px;
}

.avatar {
  display: grid;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(36, 234, 213, 0.09);
  font-size: 10px;
}

.supporter-widget > b {
  margin-left: auto;
  color: var(--pink);
  font-size: 8px;
}

.status-card {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 188px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 10px;
}

.status-card > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(36, 234, 213, 0.12);
}

.status-card strong,
.status-card small {
  display: block;
}

.status-card strong {
  font-size: 9px;
}

.status-card small {
  color: #8e8799;
  font-size: 6px;
}

.status-gift {
  right: -1%;
  bottom: 67px;
}

.status-obs {
  bottom: 19px;
  left: -2%;
}

.status-obs > span {
  color: var(--purple);
  background: rgba(166, 92, 255, 0.14);
}

.scribble-note {
  position: absolute;
  right: 5%;
  bottom: 15px;
  z-index: 4;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.04em;
  transform: rotate(-6deg);
}

.overlay-strip {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-block: 1px solid var(--line);
  color: #aea8b8;
  font-size: 11px;
}

.overlay-strip .strip-label {
  color: #635d6d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overlay-strip i {
  margin-right: 5px;
  color: var(--cyan);
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 65px;
  margin-bottom: 52px;
}

.section-heading h2,
.gumption-block h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.5vw, 67px);
  line-height: 0.96;
}

.section-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
}

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

.tool-card {
  position: relative;
  min-height: 270px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(30, 25, 47, 0.82), rgba(16, 13, 27, 0.76));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.tool-card:hover {
  border-color: rgba(36, 234, 213, 0.25);
}

.composer-card {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 27px;
  min-height: 350px;
}

.card-number {
  display: block;
  margin-bottom: 35px;
  color: #625c6e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.tool-card h3 {
  margin-bottom: 9px;
  font-size: 27px;
  line-height: 1;
}

.tool-card p {
  margin-bottom: 0;
  color: #948e9f;
  font-size: 14px;
}

.card-copy a {
  display: inline-block;
  margin-top: 23px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgba(36, 234, 213, 0.24);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(36, 234, 213, 0.1);
  font-size: 19px;
  transform: rotate(-3deg);
}

.card-icon.purple {
  border-color: rgba(166, 92, 255, 0.28);
  color: var(--purple);
  background: rgba(166, 92, 255, 0.11);
  transform: rotate(3deg);
}

.card-icon.yellow {
  border-color: rgba(255, 211, 77, 0.28);
  color: var(--yellow);
  background: rgba(255, 211, 77, 0.1);
}

.offset-card {
  transform: translateY(12px);
}

.mini-designer {
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: #0d0b16;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.designer-bar {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  color: #777181;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.designer-body {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 245px;
}

.designer-body aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 13px 9px;
  border-right: 1px solid var(--line);
  color: #6f6878;
  font-size: 6px;
}

.designer-body aside b {
  margin-bottom: 3px;
  color: #938c9d;
  letter-spacing: 0.12em;
}

.mini-canvas {
  position: relative;
  margin: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #12101b;
  background-size: 22px 22px;
}

.mini-layer {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(36, 234, 213, 0.09);
  font-size: 5px;
  letter-spacing: 0.09em;
}

.mini-layer i {
  position: absolute;
  width: 4px;
  height: 4px;
  border: 1px solid currentColor;
  background: #12101b;
}

.mini-layer i:first-of-type { top: -3px; left: -3px; }
.mini-layer i:last-of-type { right: -3px; bottom: -3px; }
.layer-goal { top: 12%; left: 7%; width: 49%; height: 21%; }
.layer-gifts { top: 18%; right: 7%; width: 28%; height: 60%; color: var(--purple); border-color: var(--purple); background: rgba(166, 92, 255, 0.1); }
.layer-likers { bottom: 10%; left: 11%; width: 42%; height: 31%; color: var(--yellow); border-color: var(--yellow); background: rgba(255, 211, 77, 0.08); }

.gumption-block {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  min-height: 420px;
  align-items: center;
  gap: 65px;
  margin: 15px 0 25px;
  padding: 65px;
  overflow: hidden;
  border: 1px solid rgba(166, 92, 255, 0.26);
  border-radius: 20px;
  background:
    radial-gradient(circle at 5% 90%, rgba(36, 234, 213, 0.15), transparent 35%),
    radial-gradient(circle at 94% 10%, rgba(166, 92, 255, 0.22), transparent 37%),
    linear-gradient(135deg, rgba(27, 22, 43, 0.95), rgba(14, 11, 24, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.gumption-mark {
  position: relative;
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  border: 1px solid rgba(36, 234, 213, 0.28);
  border-radius: 50%;
  background: rgba(36, 234, 213, 0.06);
  box-shadow: 0 0 55px rgba(36, 234, 213, 0.1), inset 0 0 35px rgba(166, 92, 255, 0.1);
  color: var(--text);
  background:
    radial-gradient(circle at 50% 38%, rgba(36, 234, 213, 0.09), transparent 58%),
    rgba(12, 10, 20, 0.7);
}

.gumption-mark span {
  color: var(--text);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.08em;
  text-shadow: 0 0 20px rgba(36, 234, 213, 0.28);
}

.gumption-block > div:last-child {
  max-width: 690px;
}

.gumption-block h2 {
  margin-bottom: 21px;
}

.gumption-block > div:last-child > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.compact-heading {
  grid-template-columns: 1fr;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 120px minmax(0, 700px);
  gap: 38px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 5px;
  font-size: 28px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 340px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 10px 0 100px;
  padding: 60px;
  overflow: hidden;
  border: 1px solid rgba(36, 234, 213, 0.2);
  border-radius: 20px;
  background: rgba(24, 19, 39, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cta-glow {
  position: absolute;
  right: 8%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(166, 92, 255, 0.25);
  filter: blur(70px);
}

.final-cta > *:not(.cta-glow) {
  position: relative;
}

.final-cta h2 {
  margin-bottom: 13px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 115px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: #726c7c;
  font-size: 11px;
}

footer p {
  margin: 0;
}

footer > div {
  display: flex;
  justify-self: end;
  gap: 22px;
  color: #a7a1b2;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 690px;
  }

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

  .overlay-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-block: 22px;
  }

  .strip-label {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .composer-card {
    grid-column: span 2;
  }

  .gumption-block {
    grid-template-columns: 0.45fr 1.55fr;
    padding: 50px;
  }

  .gumption-mark {
    width: 170px;
    height: 170px;
  }

  .gumption-mark span {
    font-size: 36px;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  footer {
    width: min(100% - 30px, 1190px);
  }

  .site-header {
    min-height: 74px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 58px;
  }

  h1 {
    font-size: clamp(57px, 18vw, 76px);
  }

  .hero-intro {
    font-size: 15px;
  }

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

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

  .preview-shell {
    left: 0;
    width: 100%;
    transform: none;
  }

  .stage-title strong {
    font-size: 28px;
  }

  .gift-widget {
    top: 47px;
    min-height: 50px;
    padding: 7px;
  }

  .gift-icon {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
  }

  .status-card {
    min-width: 162px;
    padding: 8px;
  }

  .status-gift {
    right: -6px;
    bottom: 35px;
  }

  .status-obs {
    bottom: -8px;
    left: -6px;
  }

  .scribble-note {
    display: none;
  }

  .overlay-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
  }

  .strip-label {
    grid-column: span 2;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .gumption-block h2,
  .final-cta h2 {
    font-size: clamp(46px, 14vw, 61px);
  }

  .tool-grid,
  .composer-card {
    grid-template-columns: 1fr;
  }

  .composer-card {
    grid-column: span 1;
  }

  .offset-card {
    transform: none;
  }

  .mini-designer {
    min-height: 270px;
  }

  .gumption-block {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 620px;
    padding: 37px 27px;
  }

  .gumption-mark {
    width: 150px;
    height: 150px;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .final-cta {
    min-height: 430px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 70px;
    padding: 38px 28px;
  }

  .final-cta .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.footer-privacy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-privacy:hover { color: var(--cyan); }

.privacy-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.privacy-hero { margin-bottom: 32px; }
.privacy-hero h1 { max-width: 780px; margin: 14px 0 18px; font: 700 clamp(48px, 8vw, 88px)/.96 var(--display); letter-spacing: -.065em; }
.privacy-hero > p:last-child { max-width: 700px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.privacy-status { margin: 0 0 24px; padding: 16px 18px; border: 1px solid rgba(255, 205, 80, .28); border-radius: 14px; background: rgba(255, 205, 80, .07); color: #f5e7b4; line-height: 1.55; }
.privacy-card { margin-top: 16px; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(24, 31, 47, .84), rgba(29, 17, 45, .78)); box-shadow: inset 0 1px rgba(255, 255, 255, .035); }
.privacy-card h2 { margin: 0 0 14px; font-size: 24px; letter-spacing: -.025em; }
.privacy-card h3 { margin: 24px 0 8px; color: var(--cyan); font-size: 14px; text-transform: uppercase; letter-spacing: .09em; }
.privacy-card p, .privacy-card li { color: var(--muted); line-height: 1.72; }
.privacy-card a { color: var(--cyan); }
.privacy-card ul { display: grid; gap: 8px; padding-left: 20px; }
.privacy-table { width: 100%; border-collapse: collapse; color: var(--muted); font-size: 14px; }
.privacy-table th, .privacy-table td { padding: 13px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table th { color: var(--text); }

@media (max-width: 640px) {
  .privacy-main { padding-top: 120px; }
  .privacy-table, .privacy-table tbody, .privacy-table tr, .privacy-table th, .privacy-table td { display: block; }
  .privacy-table thead { display: none; }
  .privacy-table tr { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .privacy-table td { padding: 4px 0; border: 0; }
  .privacy-table td:first-child { color: var(--text); font-weight: 700; }
}
