:root {
  --blue: #0756a3;
  --blue-dark: #07335b;
  --sky: #e8f6ff;
  --yellow: #ffd52a;
  --orange: #ff8a1f;
  --ink: #10263a;
  --muted: #5c6d7c;
  --white: #ffffff;
  --line: #d7e6f2;
  --shadow: 0 24px 70px rgba(7, 51, 91, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-rounded, "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

button, input, select, textarea { font: inherit; }

.announcement {
  padding: 0.55rem 1rem;
  color: var(--blue-dark);
  background: var(--yellow);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  background-image: linear-gradient(90deg, #ffd52a, #ffeb74, #ffd52a);
  background-size: 200% 100%;
  animation: sunshine 7s linear infinite;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 1rem max(1.25rem, calc((100% - 1160px) / 2));
  border-bottom: 1px solid rgba(7, 86, 163, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  line-height: 0;
}

.brand-logo {
  width: clamp(12rem, 20vw, 15.5rem);
  height: auto;
  max-height: 4.25rem;
  object-fit: contain;
  transform-origin: left center;
  animation: logo-bounce 5s ease-in-out infinite;
}

.site-header nav { display: flex; align-items: center; gap: 1.35rem; font-weight: 700; }

.site-header nav a:not(.nav-cta):hover { color: var(--blue); }

.nav-cta {
  padding: 0.65rem 1rem;
  color: var(--white);
  border-radius: 999px;
  background: var(--blue);
}

.section-shell { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  min-height: 710px;
  padding-block: 5rem;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0 -18vw;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 213, 42, 0.18) 0 9px, transparent 10px),
    radial-gradient(circle at 88% 74%, rgba(255, 138, 31, 0.15) 0 7px, transparent 8px),
    radial-gradient(circle at 30% 88%, rgba(7, 86, 163, 0.1) 0 6px, transparent 7px);
  background-size: 100px 100px, 130px 130px, 84px 84px;
  content: "";
  animation: confetti-drift 18s linear infinite;
}

.hero-doodles { position: absolute; z-index: 3; inset: 0; pointer-events: none; }
.doodle { position: absolute; display: grid; place-items: center; color: var(--blue); font-weight: 900; }
.doodle-star { top: 7%; left: -2%; color: var(--orange); font-size: 2.3rem; animation: float-one 4.2s ease-in-out infinite; }
.doodle-spark { top: 10%; right: 46%; color: var(--yellow); font-size: 2.7rem; text-shadow: 2px 2px 0 var(--blue-dark); animation: spin-soft 8s linear infinite; }
.doodle-circle { right: -1%; bottom: 10%; width: 2.2rem; height: 2.2rem; border: 7px solid var(--orange); border-radius: 50%; animation: float-two 5s ease-in-out infinite; }
.doodle-squiggle { bottom: 8%; left: 42%; color: var(--blue); font-family: Georgia, serif; font-size: 4rem; line-height: 1; transform: rotate(-18deg); animation: float-one 4.8s ease-in-out infinite reverse; }

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.05; }

h1 {
  max-width: 660px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.2rem, 6.2vw, 5.7rem);
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 2rem 0 1.5rem; }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.38) 48%, transparent 72%);
  content: "";
  transform: translateX(-130%);
  transition: transform 520ms ease;
}
.button:hover::after { transform: translateX(130%); }
.fun-button span { margin-left: 0.55rem; font-size: 1.25rem; transition: transform 180ms ease; }
.fun-button:hover span { transform: translateX(4px); }

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(7, 86, 163, 0.25); }
.button-primary:hover { background: #06498a; }
.button-ghost { color: var(--blue-dark); border: 2px solid var(--line); background: var(--white); }
.button-dark { color: var(--white); background: var(--blue-dark); }

.hero-notes { display: flex; flex-wrap: wrap; gap: 0.75rem 1.1rem; color: var(--blue-dark); font-size: 0.91rem; font-weight: 750; }

.hero-visual { position: relative; isolation: isolate; }

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: -6% -8% -9% -8%;
  border-radius: 46% 54% 55% 45% / 50% 42% 58% 50%;
  background: var(--yellow);
  content: "";
  transform: rotate(-3deg);
}

.image-frame {
  overflow: hidden;
  border: 5px solid var(--blue-dark);
  border-radius: 2rem;
  background: var(--sky);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), box-shadow 420ms ease;
}
.hero-visual:hover .image-frame { transform: rotate(-0.6deg) scale(1.018); box-shadow: 0 32px 90px rgba(7, 51, 91, 0.24); }

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(145deg, #0784e4, #0756a3);
}

.sticker {
  position: absolute;
  padding: 0.68rem 1rem;
  border: 3px solid var(--blue-dark);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 4px 5px 0 var(--blue-dark);
}

.sticker-top { top: -1.1rem; right: -0.5rem; color: var(--blue-dark); background: var(--white); transform: rotate(5deg); animation: sticker-bob 3.4s ease-in-out infinite; }
.sticker-bottom { bottom: -1.2rem; left: -1rem; color: var(--blue-dark); background: var(--orange); transform: rotate(-4deg); animation: sticker-bob 3.8s ease-in-out infinite reverse; }

.canvas-section {
  position: relative;
  overflow: hidden;
  padding-block: 6rem;
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 213, 42, 0.7) 0 7px, transparent 8px),
    radial-gradient(circle at 92% 78%, rgba(255, 138, 31, 0.45) 0 6px, transparent 7px),
    linear-gradient(180deg, #f4fbff 0%, #e8f6ff 100%);
  background-size: 92px 92px, 115px 115px, auto;
}

.canvas-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-bottom: 2.8rem;
}

.canvas-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  letter-spacing: -0.045em;
}

.canvas-heading > p { margin: 0 0 0.45rem; color: var(--muted); font-size: 1.06rem; }

.canvas-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }

.canvas-card {
  overflow: hidden;
  border: 3px solid var(--blue-dark);
  border-radius: 1.65rem;
  background: var(--white);
  box-shadow: 9px 10px 0 var(--blue-dark);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease;
}

.canvas-photo-card { transform: rotate(-0.7deg); }
.canvas-caricature-card { transform: translateY(1.2rem) rotate(0.7deg); box-shadow: 9px 10px 0 var(--orange); }
.canvas-card:hover { transform: translateY(-8px) rotate(0); box-shadow: 13px 16px 0 var(--yellow); }

.canvas-image-wrap { position: relative; overflow: hidden; border-bottom: 3px solid var(--blue-dark); }
.canvas-image-wrap img { width: 100%; aspect-ratio: 1.52 / 1; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.canvas-card:hover .canvas-image-wrap img { transform: scale(1.035); }

.canvas-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.8rem;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  transform: rotate(-2deg);
}

.canvas-badge.fun { right: 1rem; left: auto; color: var(--white); background: var(--orange); transform: rotate(2deg); }
.canvas-card-body { padding: clamp(1.25rem, 3vw, 1.8rem); }
.canvas-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.canvas-kicker { margin: 0 0 0.35rem; color: var(--blue); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.canvas-card h3 { max-width: 410px; margin-bottom: 0; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.canvas-price { flex: 0 0 auto; margin: 0; color: var(--blue-dark); text-align: right; }
.canvas-price strong { display: block; font-size: clamp(2rem, 3vw, 2.7rem); line-height: 0.95; }
.canvas-price span { font-size: 0.82rem; font-weight: 850; text-transform: uppercase; }
.canvas-card ul { display: grid; gap: 0.55rem; margin: 1.4rem 0 1.55rem; padding: 0; color: var(--muted); list-style: none; }
.canvas-card li::before { margin-right: 0.55rem; color: var(--orange); content: "✦"; font-weight: 900; }
.canvas-card .button { width: 100%; }
.canvas-note { max-width: 840px; margin: 2.5rem 0 0; color: var(--muted); font-size: 0.9rem; }

.examples { padding-block: 6rem; }

.section-heading { max-width: 720px; margin-bottom: 2.6rem; }
.section-heading h2 { margin-bottom: 1rem; font-size: clamp(2.25rem, 4.5vw, 4rem); letter-spacing: -0.04em; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.07rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 1.4rem; }

.personalization-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin: -0.8rem 0 2.4rem;
  padding: 1.15rem 1.35rem;
  border: 2px solid #f3b400;
  border-radius: 1.1rem;
  background: #fff7d6;
  color: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(243, 180, 0, 0.14);
  animation: callout-glow 3.5s ease-in-out infinite;
}
.personalization-callout .callout-icon { font-size: 2rem; }
.personalization-callout p { margin: 0.2rem 0 0; color: var(--muted); }

.gallery-card {
  margin: 0;
  padding: 0.75rem 0.75rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 7px 8px 0 var(--yellow);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease;
}

.gallery-card:hover { transform: translateY(-12px) rotate(0); box-shadow: 11px 14px 0 var(--orange); }

.gallery-card img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 0.75rem; background: #f7f7f7; }
.gallery-card figcaption { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.85rem 0.25rem; font-weight: 850; }
.gallery-card figcaption { text-align: left; }
.gallery-card figcaption strong { flex: 0 0 auto; color: var(--blue); }
.book-spec {
  margin: -0.3rem 0.25rem 0.9rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}
.gallery-card .product-button { width: 100%; min-height: 2.75rem; }
.tilt-left { transform: rotate(-1.8deg); }
.tilt-right { transform: rotate(1.8deg); }
.lift { transform: translateY(-1.4rem); }

.process-wrap { color: var(--white); background: var(--blue-dark); }
.process { padding-block: 5.5rem; }
.eyebrow.light { color: var(--yellow); }
.compact { margin-bottom: 2rem; }
.compact h2 { margin-bottom: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin: 0; padding: 0; list-style: none; }
.steps li { display: flex; gap: 0.9rem; padding: 1.25rem; border: 1px solid rgba(255,255,255,0.16); border-radius: 1rem; background: rgba(255,255,255,0.07); }
.steps li { transition: transform 220ms ease, background 220ms ease; }
.steps li:hover { background: rgba(255,255,255,0.13); transform: translateY(-6px); }
.steps li:hover > span { animation: number-pop 420ms ease; }
.steps li > span { display: grid; flex: 0 0 2.15rem; height: 2.15rem; place-items: center; color: var(--blue-dark); border-radius: 50%; background: var(--yellow); font-weight: 900; }
.steps strong { display: block; margin-bottom: 0.35rem; }
.steps p { margin: 0; color: #c8dceb; font-size: 0.92rem; }

.pricing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-block: 1rem 5rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 3px solid var(--blue);
  border-radius: 2.25rem;
  background: linear-gradient(135deg, #e8f6ff 0%, #fff8d6 100%);
  box-shadow: 10px 12px 0 var(--yellow);
}
.pricing .section-heading { margin-bottom: 0; }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; max-width: 900px; }
.price-grid.single-price { grid-template-columns: minmax(0, 1fr); }
.price-card { position: relative; display: flex; flex-direction: column; padding: 2rem; border: 2px solid var(--line); border-radius: 1.5rem; background: var(--white); box-shadow: 0 16px 45px rgba(7,51,91,0.08); }
.price-card.featured { border: 3px solid var(--blue); box-shadow: var(--shadow); }
.price-card.featured { transition: transform 280ms ease, box-shadow 280ms ease; }
.price-card.featured:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(7, 51, 91, 0.22); }
.popular { position: absolute; top: -1rem; right: 1.5rem; padding: 0.45rem 0.75rem; color: var(--blue-dark); border: 2px solid var(--blue-dark); border-radius: 999px; background: var(--yellow); font-size: 0.79rem; font-weight: 900; transform: rotate(2deg); }
.price-label { margin: 0 0 0.35rem; color: var(--blue); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.price { margin: 0 0 1.5rem; color: var(--blue-dark); }
.price strong { font-size: 3.6rem; line-height: 1; }
.price-card ul { display: grid; gap: 0.8rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.price-card li::before { margin-right: 0.65rem; color: var(--blue); content: "✓"; font-weight: 900; }
.price-card .button { margin-top: auto; }
.pricing-note { grid-column: 2; margin: -2.8rem 0 0; color: var(--muted); font-size: 0.9rem; }

.product-showcase {
  padding-block: 6rem;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 213, 42, 0.45) 0 7px, transparent 8px),
    linear-gradient(180deg, #f7fbff 0%, #e8f6ff 100%);
  background-size: 110px 110px, auto;
}
.showcase-grid { display: grid; grid-template-columns: minmax(0, 1fr); max-width: 900px; margin-inline: auto; }
.showcase-card {
  overflow: hidden;
  margin: 0;
  border: 3px solid var(--blue-dark);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 8px 9px 0 var(--yellow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: 11px 13px 0 var(--orange); }
.showcase-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--sky); }
.showcase-card figcaption { display: grid; gap: 0.35rem; padding: 1.15rem 1.2rem 1.3rem; }
.showcase-card figcaption strong { color: var(--blue-dark); font-size: 1.02rem; }
.showcase-card figcaption span { color: var(--muted); font-size: 0.9rem; }
.model-note { margin: 2rem 0 0; color: var(--muted); font-size: 0.88rem; }

.order-section { color: var(--white); background: linear-gradient(135deg, var(--blue) 0%, #0875c9 100%); }
.order-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); padding-block: 6rem; }
.order-copy h2 { margin-bottom: 1.2rem; font-size: clamp(2.4rem, 5vw, 4.25rem); letter-spacing: -0.045em; }
.order-copy > p { color: #dcefff; font-size: 1.06rem; }
.privacy-note { margin-top: 2rem; padding: 1.1rem; color: var(--blue-dark); border: 2px solid var(--blue-dark); border-radius: 1rem; background: var(--yellow); box-shadow: 5px 6px 0 var(--blue-dark); }
.privacy-note strong { display: block; }

.launch-card {
  align-self: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--ink);
  border: 3px solid var(--blue-dark);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 9px 10px 0 var(--yellow);
}
.launch-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-1deg);
}
.launch-card h3 { margin-bottom: 0.8rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.launch-card > p { margin: 0; color: var(--muted); }
.launch-card ul { display: grid; gap: 0.6rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.launch-card li::before { margin-right: 0.55rem; color: var(--blue); content: "✓"; font-weight: 900; }
.launch-card .button { width: 100%; }

.order-form { display: grid; gap: 1rem; padding: clamp(1.25rem, 4vw, 2rem); color: var(--ink); border-radius: 1.5rem; background: var(--white); box-shadow: var(--shadow); }
.interest-form { align-self: center; border: 3px solid var(--blue-dark); box-shadow: 9px 10px 0 var(--yellow); }
.interest-form h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.interest-form > p { margin: 0; color: var(--muted); }
.personalized-fields { display: grid; gap: 1rem; }
[hidden] { display: none !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.order-form label, .order-form legend { font-size: 0.9rem; font-weight: 800; }
.order-form input, .order-form select, .order-form textarea { width: 100%; margin-top: 0.4rem; padding: 0.85rem 0.9rem; color: var(--ink); border: 2px solid var(--line); border-radius: 0.75rem; background: #fbfdff; }
.order-form textarea { resize: vertical; }
.order-form fieldset { margin: 0; padding: 0; border: 0; }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; margin-top: 0.55rem; }
.theme-grid label { display: flex; align-items: center; gap: 0.45rem; padding: 0.65rem; border: 2px solid var(--line); border-radius: 0.7rem; background: #fbfdff; cursor: pointer; }
.theme-grid input, .consent input { width: 1rem; height: 1rem; margin: 0; accent-color: var(--blue); }
.consent { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--muted); }
.consent input { flex: 0 0 auto; margin-top: 0.2rem; }
.submit-button { width: 100%; font-size: 1rem; }
.form-help { font-size: 0.82rem; line-height: 1.5; text-align: center; }
.form-legal-link { justify-self: center; color: var(--blue); font-size: 0.86rem; font-weight: 800; text-decoration: underline; text-underline-offset: 0.2rem; }
.form-status { min-height: 1.5rem; margin: -0.2rem 0 0; color: #a43d00; font-size: 0.88rem; font-weight: 750; text-align: center; }

.reveal-item { opacity: 0; transform: translateY(32px) scale(0.985); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.2,1); }
.reveal-item.is-visible { opacity: 1; transform: none; }
.gallery-card.reveal-item:nth-child(2) { transition-delay: 100ms; }
.gallery-card.reveal-item:nth-child(3) { transition-delay: 200ms; }

@keyframes sunshine { to { background-position: 200% 0; } }
@keyframes logo-bounce { 0%, 88%, 100% { transform: translateY(0) rotate(0); } 92% { transform: translateY(-3px) rotate(-1deg) scale(1.02); } 96% { transform: translateY(0) rotate(1deg); } }
@keyframes confetti-drift { to { background-position: 100px 100px, -130px 130px, 84px -84px; } }
@keyframes float-one { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-14px) rotate(8deg); } }
@keyframes float-two { 0%, 100% { transform: translate(0, 0) rotate(0); } 50% { transform: translate(-8px, -15px) rotate(12deg); } }
@keyframes spin-soft { to { transform: rotate(360deg); } }
@keyframes sticker-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes callout-glow { 0%, 100% { box-shadow: 0 10px 28px rgba(243, 180, 0, 0.14); } 50% { box-shadow: 0 14px 38px rgba(255, 138, 31, 0.28); } }
@keyframes number-pop { 50% { transform: rotate(8deg) scale(1.18); } }

footer { color: #d7e8f5; background: #041f38; }
.footer-inner { display: grid; grid-template-columns: minmax(240px, 1.2fr) minmax(220px, 1fr) auto; align-items: start; gap: 2rem; padding-block: 2.5rem; }
.footer-inner p { margin: 0; font-size: 0.9rem; }
.footer-about { display: grid; justify-items: start; gap: 0.75rem; }
.footer-brand {
  padding: 0.35rem 0.7rem;
  border-radius: 1rem;
  background: var(--white);
}
.footer-brand .brand-logo { width: min(12rem, 44vw); max-height: 3.4rem; }
.prelaunch-footer { max-width: 430px; color: #a9c4d8; }
.footer-links { display: grid; gap: 0.55rem; font-size: 0.9rem; font-weight: 700; }
.footer-links a { color: #d7e8f5; text-decoration: underline; text-decoration-color: rgba(215,232,245,0.32); text-underline-offset: 0.22rem; }
.footer-links a:hover { color: var(--yellow); }
.copyright { justify-self: end; white-space: nowrap; }

.legal-page { background: #f4f9fd; }
.legal-header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); }
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.legal-back { color: var(--blue); font-weight: 850; }
.legal-main { padding-block: 4rem 6rem; }
.legal-hero { max-width: 850px; margin-bottom: 2rem; }
.legal-hero h1 { margin-bottom: 1rem; font-size: clamp(2.6rem, 6vw, 5rem); }
.legal-hero > p { color: var(--muted); font-size: 1.06rem; }
.legal-status, .legal-alert {
  padding: 1rem 1.15rem;
  border: 2px solid #e6b600;
  border-radius: 1rem;
  background: #fff8d6;
  color: var(--blue-dark);
}
.legal-status strong, .legal-alert strong { display: block; margin-bottom: 0.25rem; }
.legal-toc { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0; }
.legal-toc a { padding: 0.55rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--blue-dark); font-size: 0.86rem; font-weight: 800; }
.legal-toc a:hover { border-color: var(--blue); color: var(--blue); }
.legal-stack { display: grid; gap: 1.25rem; }
.legal-section {
  scroll-margin-top: 6rem;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(7, 51, 91, 0.07);
}
.legal-section h2 { margin-bottom: 1rem; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.legal-section h3 { margin: 1.5rem 0 0.6rem; font-size: 1.15rem; }
.legal-section p, .legal-section li { color: #344d61; }
.legal-section ul { padding-left: 1.25rem; }
.legal-section a { color: var(--blue); font-weight: 750; text-decoration: underline; text-underline-offset: 0.18rem; }
.legal-section dl { display: grid; grid-template-columns: minmax(170px, 0.35fr) 1fr; gap: 0.65rem 1rem; margin: 1rem 0; }
.legal-section dt { color: var(--blue-dark); font-weight: 850; }
.legal-section dd { margin: 0; color: var(--muted); }
.legal-update { margin-top: 1.5rem; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 900px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 3.5rem 5rem; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(720px, 94%); margin-inline: auto; }
  .pricing { grid-template-columns: 1fr; margin-block: 0 4rem; }
  .pricing-note { grid-column: auto; margin: 0; }
  .canvas-heading { grid-template-columns: 1fr; }
  .canvas-heading > p { max-width: 680px; }
  .canvas-grid { grid-template-columns: 1fr; }
  .canvas-card { width: min(680px, 100%); margin-inline: auto; }
  .canvas-caricature-card { transform: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: 1fr; }
  .order-copy { max-width: 700px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 640px) {
  .announcement { font-size: 0.76rem; }
  .site-header { padding-block: 0.75rem; }
  .brand-logo { width: min(10.8rem, 48vw); max-height: 3.25rem; }
  .nav-cta { padding: 0.55rem 0.85rem; }
  .section-shell { width: min(100% - 1.5rem, 1160px); }
  h1 { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .hero { gap: 3.5rem; padding-top: 2.75rem; }
  .hero-actions .button { flex: 1 1 100%; }
  .sticker { font-size: 0.78rem; }
  .canvas-section { padding-block: 4.5rem; }
  .canvas-title-row { flex-direction: column; align-items: flex-start; }
  .canvas-price { text-align: left; }
  .canvas-price strong { font-size: 2rem; }
  .gallery { grid-template-columns: 1fr; gap: 1.75rem; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card { width: 100%; margin-inline: auto; }
  .gallery-card { width: min(88%, 390px); margin-inline: auto; }
  .lift { transform: none; }
  .steps, .price-grid { grid-template-columns: 1fr; }
  .field-row, .theme-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
  .legal-header-inner { align-items: flex-start; }
  .legal-section dl { grid-template-columns: 1fr; gap: 0.2rem; }
  .legal-section dd { margin-bottom: 0.7rem; }
  .doodle-star { left: 2%; }
  .doodle-spark { right: 4%; }
  .doodle-circle, .doodle-squiggle { display: none; }
}

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