:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --white: #ffffff;
  --line: #d2d2d7;
  --blue: #0071e3;
  --blue-dark: #005bb5;
  --red: #c9342f;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

body.motion-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px clamp(12px, 4vw, 52px);
  background: rgba(251, 251, 253, 0.82);
  border-bottom: 1px solid rgba(210, 210, 215, 0.55);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  background: rgba(251, 251, 253, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 150px;
  height: 64px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  color: #313136;
  font-size: 13px;
  font-weight: 600;
}

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

.nav-cta {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--white) !important;
  background: var(--blue);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
}

.apple-hero {
  min-height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(56px, 8vw, 92px) 20px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 56%, #ffffff 100%);
}

.apple-hero h1,
.apple-hero p,
.hero-kicker,
.hero-links,
.apple-hero img {
  animation: heroRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.apple-hero p { animation-delay: 90ms; }
.hero-links { animation-delay: 160ms; }
.apple-hero img { animation-delay: 220ms; }

.hero-kicker,
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.apple-hero h1 {
  margin: 0;
  font-size: clamp(82px, 16vw, 190px);
  line-height: 0.84;
  font-weight: 900;
}

.apple-hero p {
  max-width: 740px;
  margin: 22px auto 0;
  color: #333336;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 26px 0 14px;
  font-size: 19px;
  font-weight: 600;
}

.hero-links a {
  color: var(--blue);
}

.hero-links a::after {
  content: ">";
  margin-left: 6px;
}

.apple-hero img {
  width: min(90vw, 1120px);
  max-height: 54vh;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.16));
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.parallax-media {
  transform: translateY(var(--parallax, 0px));
}

.split-showcase,
.image-band,
.product-hero,
.offers-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: clamp(26px, 5vw, 78px);
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
}

.split-showcase {
  background: var(--white);
}

.split-showcase h2,
.image-band h2,
.support-copy h2,
.section-title h2,
.offer-banner h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
}

.split-showcase p:not(.eyebrow),
.image-band p,
.product-hero p,
.page-hero p,
.form-hero p,
.support-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.split-showcase img,
.image-band img,
.product-hero img,
.offers-hero img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.device-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, #f7f7f9 0%, #e6e7ec 48%, #faf5f2 100%);
  box-shadow: var(--shadow);
}

.device {
  position: absolute;
  width: min(56%, 420px);
  transform-style: preserve-3d;
}

.device.silver {
  left: 11%;
  top: 29%;
  transform: rotate(-8deg);
}

.device.rose {
  right: 8%;
  top: 18%;
  transform: rotate(9deg);
}

.screen {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 12px solid #151519;
  border-bottom-width: 20px;
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 36%),
    radial-gradient(circle at 30% 30%, #c9e7ff, #3467d6 42%, #10131d 100%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.22);
}

.base {
  width: 112%;
  height: 28px;
  margin-left: -6%;
  border-radius: 0 0 32px 32px;
  transform: perspective(260px) rotateX(58deg);
  transform-origin: top;
}

.silver .base {
  background: linear-gradient(90deg, #cfd1d6, #ffffff 45%, #b9bbc1);
}

.rose .base {
  background: linear-gradient(90deg, #d7b5ae, #fff0eb 45%, #bf8f86);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--soft);
}

.tile {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 58px 26px;
  border-radius: 0;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.tile:hover,
.prize-card:hover,
.gallery-grid figure:hover,
.support-contact a:hover {
  transform: translateY(-6px);
}

.tile img {
  width: min(88%, 540px);
  max-height: 260px;
  margin-top: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.18);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tile:hover img {
  transform: scale(1.035);
}

.tile span {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.tile h2 {
  max-width: 620px;
  margin: 0 auto 12px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.tile p {
  max-width: 520px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.35;
}

.tile.dark {
  color: var(--white);
  background: radial-gradient(circle at 50% 110%, #2d3748, #050505 58%);
}

.tile.dark span,
.tile.dark p {
  color: #c8c8cd;
}

.tile.light {
  background: #ffffff;
}

.tile.light img {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.1);
}

.story-panel,
.details-section,
.offer-banner,
.closing-cta {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
  background: var(--soft);
}

.closing-cta {
  text-align: center;
  background: var(--white);
}

.closing-cta h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.98;
}

.story-panel {
  background: #101010;
  color: var(--white);
}

.section-title {
  max-width: 960px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.story-grid,
.detail-list,
.support-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-grid article,
.detail-list div,
.support-process article {
  min-height: 280px;
  padding: clamp(26px, 3vw, 42px);
  background: var(--white);
}

.story-grid article {
  color: var(--white);
  background: linear-gradient(145deg, #2a2a30, #070707);
}

.story-grid h3,
.support-process h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
}

.story-grid p,
.detail-list span,
.support-process p,
.offer-banner p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.story-grid p {
  color: #c8c8cd;
}

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

.detail-list div {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.detail-list strong {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
}

.feature-strip,
.specs-wall,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip div,
.spec,
.contact-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--white);
}

.feature-strip strong,
.spec strong,
.contact-grid strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.feature-strip span,
.spec span,
.spec small,
.contact-grid span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.product-hero {
  min-height: 76vh;
  background: var(--soft);
}

.product-hero h1,
.offers-hero h1,
.page-hero h1,
.form-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
}

.specs-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-band {
  background: #101010;
  color: var(--white);
}

.image-band p {
  color: #c8c8cd;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.feature-device {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: clamp(24px, 5vw, 58px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 10%, rgba(0, 113, 227, 0.28), transparent 34%),
    linear-gradient(145deg, #1d1d1f, #050505);
  box-shadow: var(--shadow);
}

.port-row {
  display: flex;
  gap: 12px;
}

.port-row span {
  width: 54px;
  height: 18px;
  border: 1px solid #5e5e64;
  border-radius: 12px;
  background: #0c0c0d;
}

.wide-screen {
  display: grid;
  place-items: center;
  border: 12px solid #29292e;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%),
    radial-gradient(circle at 30% 20%, #dff2ff, #0a64d8 46%, #121727 100%);
  color: var(--white);
  font-size: clamp(34px, 6vw, 82px);
  font-weight: 900;
}

.keyboard-lines {
  height: 92px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(90deg, #28282d 0 34px, #101012 34px 44px),
    linear-gradient(#202024, #111113);
  opacity: 0.86;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.primary {
  color: var(--white);
  background: var(--blue);
}

.primary:hover,
.nav-cta:hover {
  background: var(--blue-dark);
}

.secondary {
  color: var(--blue);
  background: transparent;
}

.page-hero,
.form-hero {
  padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 86px) clamp(44px, 6vw, 76px);
  background: var(--soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--soft);
}

.gallery-grid figure {
  min-height: 360px;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--white);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.gallery-grid figure:hover {
  box-shadow: var(--shadow);
}

.gallery-grid figure.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.offers-hero {
  min-height: 76vh;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.campaign-hero {
  min-height: calc(100vh - 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 113, 227, 0.32), transparent 34%),
    radial-gradient(circle at 15% 80%, rgba(201, 52, 47, 0.18), transparent 32%),
    linear-gradient(145deg, #111113 0%, #050505 100%);
}

.campaign-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(56px, 8.4vw, 128px);
  line-height: 0.9;
}

.campaign-hero p {
  max-width: 780px;
  color: #c8c8cd;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.35;
}

.campaign-card {
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.campaign-card span,
.campaign-card em {
  color: #c8c8cd;
  font-style: normal;
  font-weight: 800;
}

.campaign-card strong {
  display: block;
  margin: 10px 0 4px;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.9;
}

.campaign-card dl {
  display: grid;
  gap: 1px;
  margin: 44px 0 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
}

.campaign-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  background: rgba(10, 10, 11, 0.76);
}

.campaign-card dt {
  color: #a8a8ad;
  font-weight: 700;
}

.campaign-card dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.grand-prize {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
  background: var(--white);
}

.grand-prize h2 {
  margin-bottom: 18px;
  font-size: clamp(58px, 9vw, 138px);
  line-height: 0.9;
}

.grand-prize p {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.grand-prize img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.campaign-stats div {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 30px;
  background: var(--soft);
}

.campaign-stats strong {
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 0.95;
}

.campaign-stats span {
  color: var(--muted);
  font-weight: 800;
}

.prize-section,
.draw-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
  background: var(--soft);
}

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

.prize-card {
  display: grid;
  grid-template-rows: 230px auto auto 1fr;
  overflow: hidden;
  background: var(--white);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.prize-card:hover {
  box-shadow: var(--shadow);
}

.prize-card.feature {
  grid-column: span 2;
}

.prize-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.prize-card:hover img {
  transform: scale(1.045);
}

.prize-card span {
  margin: 24px 24px 8px;
  color: var(--blue);
  font-weight: 900;
}

.prize-card h3 {
  margin: 0 24px 12px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
}

.prize-card p {
  margin: 0 24px 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.draw-section {
  color: var(--white);
  background: #101010;
}

.draw-section .section-title p:not(.eyebrow) {
  color: #c8c8cd;
  font-size: 22px;
  line-height: 1.45;
}

.draw-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.draw-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(145deg, #2a2a30, #070707);
  color: #f5f5f7;
  font-weight: 900;
  transition: transform 220ms ease, border-color 220ms ease;
}

.draw-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.36);
}

.draw-grid span:last-child {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.support-hero {
  min-height: calc(100vh - 52px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 86px);
  background:
    radial-gradient(circle at 80% 24%, rgba(0, 113, 227, 0.13), transparent 32%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.support-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.92;
}

.support-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.38;
}

.support-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.85), transparent 42%),
    linear-gradient(145deg, #dfe4eb, #ffffff 52%, #eceff5);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-visual img {
  width: min(88%, 620px);
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.16));
}

.support-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--soft);
}

.support-contact a {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 42px);
  background: var(--white);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.support-contact a:hover {
  box-shadow: var(--shadow);
}

.support-contact span,
.support-contact em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.support-contact strong {
  overflow-wrap: anywhere;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
}

.support-contact a[href^="mailto"] strong {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.08;
}

.support-topics {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
  background: #101010;
  color: var(--white);
}

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

.topic-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(145deg, #2a2a30, #070707);
}

.topic-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.topic-grid p {
  color: #c8c8cd;
  font-size: 18px;
  line-height: 1.45;
}

.support-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
  background: var(--white);
}

.support-journey h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 90px);
  line-height: 0.95;
}

.support-journey ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.support-journey li {
  position: relative;
  min-height: 132px;
  padding: 28px 28px 28px 92px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  counter-increment: journey;
}

.support-journey li::before {
  content: counter(journey);
  position: absolute;
  left: 28px;
  top: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.support-journey strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.support-journey span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.offers-hero p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.offers-hero .button {
  margin-top: 22px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--soft);
}

.offer-grid article {
  min-height: 390px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--white);
}

.offer-grid span {
  color: var(--blue);
  font-weight: 900;
}

.offer-grid h2 {
  margin: 70px 0 16px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1;
}

.offer-grid p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.offer-banner {
  text-align: center;
  background: #ffffff;
}

.offer-banner h2,
.offer-banner p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.centered {
  justify-content: center;
}

.page-hero p,
.form-hero p {
  max-width: 820px;
}

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

.support-copy {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
}

.support-process {
  padding: 14px;
  background: var(--soft);
}

.support-process article {
  background: var(--white);
}

.support-process span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 56px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.order-section {
  padding: clamp(50px, 7vw, 96px) clamp(20px, 5vw, 86px);
  background: var(--soft);
}

.order-section.compact {
  padding-top: 24px;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.registration-form {
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

label,
fieldset {
  display: grid;
  gap: 8px;
  color: #303034;
  font-size: 14px;
  font-weight: 800;
}

fieldset {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

legend { padding: 0 6px; }

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.choice input { width: auto; }

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 113, 227, 0.18);
  border-color: var(--blue);
}

label span,
.form-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

textarea,
.order-form .button,
.form-note {
  grid-column: 1 / -1;
}

.form-note.error {
  color: var(--red);
  font-weight: 800;
}

.form-page {
  background: #e9e9f3;
}

.google-form-shell {
  padding: 18px 12px 42px;
  background: #e9e9f3;
}

.google-form {
  width: min(100%, 640px);
  margin: 0 auto;
}

.gf-card {
  display: block;
  margin-bottom: 14px;
  padding: 22px 24px;
  border: 1px solid #dadce0;
  border-radius: 3px;
  background: #ffffff;
}

.gf-title-card {
  border-top: 8px solid #3f51b5;
}

.gf-title-card h1 {
  margin: 0 0 12px;
  color: #202124;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.gf-title-card p {
  margin: 8px 0;
  color: #5f6368;
  font-size: 13px;
  line-height: 1.45;
}

.gf-title-card a {
  color: #1a73e8;
  font-weight: 600;
}

.gf-title-card span {
  display: block;
  margin-top: 12px;
  color: #d93025;
  font-size: 13px;
}

.gf-brand-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  background: #fff1fb;
}

.gf-brand-card img {
  width: 112px;
  height: 76px;
  object-fit: contain;
}

.gf-brand-card strong {
  display: block;
  color: #174ea6;
  font-size: 20px;
  line-height: 1.1;
}

.gf-brand-card span {
  color: #d93025;
  font-weight: 800;
}

.gf-image-card {
  padding: 14px;
  background: #ffffff;
  overflow: visible;
}

.gf-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.notice-image {
  padding: 16px;
  background: #ffffff;
}

.gf-notice {
  color: #2b2c30;
  background: #fff7fb;
}

.compact-notice {
  border-left: 8px solid #3f51b5;
}

.gf-notice h2 {
  margin: 0 0 14px;
  color: #174ea6;
  text-align: center;
  font-size: 18px;
}

.gf-notice p,
.gf-notice li {
  color: #344054;
  font-size: 13px;
  line-height: 1.65;
}

.gf-notice ol {
  margin: 0;
  padding-left: 20px;
}

.gf-section {
  margin: 18px 0 14px;
  padding: 12px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  color: #174ea6;
  background: linear-gradient(90deg, #fce8ef, #e8f0fe);
  text-align: center;
  font-weight: 800;
}

.google-form .question {
  color: #202124;
  font-size: 14px;
  font-weight: 500;
}

.google-form .question b,
.google-form legend b {
  color: #d93025;
  font-weight: 700;
}

.google-form fieldset.gf-card {
  border: 1px solid #dadce0;
}

.google-form legend {
  margin-bottom: 12px;
  padding: 0;
  color: #202124;
  font-size: 14px;
  font-weight: 500;
}

.google-form input:not([type="radio"]):not([type="file"]),
.google-form textarea {
  display: block;
  width: 52%;
  min-width: 260px;
  margin-top: 18px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid #dadce0;
  border-radius: 0;
  background: transparent;
  color: #202124;
  font-size: 13px;
}

.google-form input:not([type="radio"]):not([type="file"]):focus,
.google-form textarea:focus {
  outline: 0;
  border-color: #3f51b5;
}

.google-form .choice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #3c4043;
  font-size: 13px;
  font-weight: 400;
}

.upload-question span {
  display: block;
  margin: 8px 0 12px;
  color: #5f6368;
  font-size: 12px;
  font-weight: 400;
}

.upload-question input[type="file"] {
  max-width: 280px;
  padding: 0;
  border: 0;
  font-size: 13px;
}

.company-use {
  display: grid;
  place-items: center;
  min-height: 168px;
  margin: 18px 0 10px;
  border: 7px solid #274472;
  color: #ffffff;
  background: #08243f;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.company-use-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 18px 0 10px;
  border: 0;
  object-fit: contain;
}

.gf-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 10px;
}

.gf-actions .button {
  min-height: 36px;
  padding: 0 24px;
  border-radius: 4px;
  background: #3f51b5;
  font-size: 14px;
}

.gf-actions a {
  color: #3f51b5;
  font-size: 13px;
  font-weight: 700;
}

.google-form .form-note {
  margin: 0 0 24px;
  color: #5f6368;
  font-size: 12px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 86px);
  color: var(--muted);
  background: #f5f5f7;
  font-size: 13px;
}

footer a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    inset: 52px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(251, 251, 253, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .split-showcase,
  .image-band,
  .product-hero,
  .offers-hero,
  .support-hero,
  .campaign-hero,
  .grand-prize,
  .support-journey {
    grid-template-columns: 1fr;
  }

  .tiles,
  .feature-strip,
  .specs-wall,
  .contact-grid,
  .offer-grid,
  .story-grid,
  .detail-list,
  .support-process,
  .support-contact,
  .topic-grid,
  .campaign-stats,
  .prize-grid,
  .draw-grid,
  .gallery-grid,
  .order-form {
    grid-template-columns: 1fr;
  }

  .prize-card.feature {
    grid-column: auto;
  }

  .campaign-card {
    min-height: 420px;
  }

  .support-visual {
    min-height: 360px;
  }

  .gallery-grid figure.large {
    grid-column: auto;
    grid-row: auto;
  }

  .tile {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .apple-hero h1 {
    font-size: clamp(68px, 24vw, 112px);
  }

  .apple-hero p {
    font-size: 25px;
  }

  .hero-links {
    font-size: 17px;
  }

  .registration-form {
    border-radius: 20px;
  }

  .gf-card {
    padding: 18px 16px;
  }

  .gf-brand-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gf-brand-card img {
    margin: 0 auto;
  }

  .google-form input:not([type="radio"]):not([type="file"]),
  .google-form textarea {
    width: 100%;
    min-width: 0;
  }
}
