@font-face {
  font-family: "MetaMask Sans";
  src: url("../fonts/mm-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "MMPolyVariable";
  src: url("../fonts/3c62ca53bd17373f-s.p.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wdth" 25;
  font-display: swap;
}
@font-face {
  font-family: "MetaMask Euclid";
  src: url("../fonts/mm-euclid-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "MetaMask Euclid";
  src: url("../fonts/mm-euclid-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --paper: #f7f9fc;
  --white: #ffffff;
  --green: #013330;
  --green-deep: #013330;
  --lime: #e5ffc3;
  --lime-bright: #baf24a;
  --orange: #ff5c16;
  --orange-deep: #661800;
  --purple: #d075ff;
  --purple-deep: #3d065f;
  --blue-deep: #190066;
  --blue: #cce7ff;
  --gray: #e9edf6;
  --gray-dark: #626977;
  --border: rgba(10, 10, 10, .16);
  --container: 1408px;
  --page-pad: 24px;
  --radius-card: 28px;
  --radius-section: 48px;
  --radius-button: 999px;
  --shadow-soft: 0 28px 80px rgba(7, 25, 23, .14);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "MetaMask Euclid", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--green-deep); background: var(--lime-bright); }

.sr-only {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: var(--radius-button);
  background: var(--white);
  font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--lime-bright); outline-offset: 4px; }
[tabindex="-1"]:focus { outline: none; }

.page-loader {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--green-deep);
  transition: opacity .75s var(--ease), visibility .75s;
}
body.is-ready .page-loader { visibility: hidden; opacity: 0; }
.page-loader__brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.06em;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}
.page-loader__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform-origin: left;
  background: var(--lime-bright);
  animation: loaderLine 1.1s var(--ease) forwards;
}
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loaderPulse { to { transform: scale(1.04); } }

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--lime);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  width: min(calc(100% - var(--page-pad) * 2), var(--container));
  height: 96px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: start;
  width: max-content;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.06em;
  text-decoration: none;
}
.desktop-nav { display: flex; gap: 8px; align-items: center; }
.desktop-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-button);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease;
}
.desktop-nav a:hover { color: var(--green-deep); background: var(--lime); }
.header-actions { display: flex; gap: 12px; align-items: center; justify-self: end; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-deep);
  transition: transform .25s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  top: 82px;
  right: var(--page-pad);
  left: var(--page-pad);
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow-soft);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 15px 12px; border-bottom: 1px solid rgba(0,0,0,.12); font-weight: 700; text-decoration: none; }

.button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius-button);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s ease, background-color .3s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.button:active { transform: translateY(0); }
.button--small { min-height: 46px; padding-inline: 22px; }
.button--lime { color: var(--green-deep); background: var(--lime-bright); }
.button--dark { color: var(--white); background: var(--ink); }
.button--ghost { border: 1px solid var(--border); color: var(--ink); background: transparent; }
.button--hero { min-height: 64px; padding-inline: 32px; }
.button--wide { width: 100%; }

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 940px;
  padding: 160px var(--page-pad) 36px;
  color: var(--lime);
  background: var(--green);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  gap: 48px;
  align-items: center;
  width: min(100%, var(--container));
  min-height: 700px;
  margin: 0 auto;
}
.hero-copy { align-self: center; }
.hero-title {
  margin: 0;
  font-size: clamp(84px, 8.1vw, 132px);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .78;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.hero-title span:nth-child(2) { color: var(--orange); }
.hero-intro { max-width: 500px; margin: 34px 0 0; font-size: clamp(18px, 1.6vw, 23px); line-height: 1.38; }
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 40px; }
.text-link { padding: 12px 0; font-size: 14px; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.hero-visual { position: relative; height: 680px; perspective: 1200px; }
.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: min(100%, var(--container));
  margin: 30px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(223,255,155,.28);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}
.hero-animate { opacity: 0; }
body.is-ready .hero-animate { animation: heroIn .9s var(--ease) forwards; }
body.is-ready .hero-animate--1 { animation-delay: .12s; }
body.is-ready .hero-animate--2 { animation-delay: .2s; }
body.is-ready .hero-animate--3 { animation-delay: .32s; }
body.is-ready .hero-animate--4 { animation-delay: .42s; }
body.is-ready .hero-animate--5 { animation-delay: .28s; }
body.is-ready .hero-animate--6 { animation-delay: .58s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(46px) scale(.985); } to { opacity: 1; transform: none; } }

.marquee-band { overflow: hidden; padding: 21px 0 20px; color: var(--green-deep); background: var(--lime-bright); }
.marquee-track { display: flex; gap: 32px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.marquee-track i { width: 9px; height: 9px; transform: rotate(45deg); background: var(--green-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { position: relative; padding: 140px var(--page-pad); }
.section-inner { width: min(100%, var(--container)); min-width: 0; margin: 0 auto; }
.section-inner > *, .control-grid > *, .faq-grid > * { min-width: 0; }
.section--lime { background: var(--lime); }
.section--purple { color: var(--purple-deep); background: var(--purple); }
.section--orange { color: var(--orange-deep); background: var(--orange); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; margin-bottom: 72px; }
.section-heading h2,
.moments-heading h2,
.cards-heading h2,
.control-copy h2,
.how-heading h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(60px, 7.4vw, 118px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .84;
  text-transform: uppercase;
}
.section-heading h2 { grid-column: 2; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit-card { position: relative; overflow: hidden; min-height: 510px; padding: 34px; border-radius: var(--radius-card); }
.benefit-card h3 { position: absolute; right: 34px; bottom: 82px; left: 34px; margin: 0; font-size: 36px; letter-spacing: -.05em; line-height: 1; }
.benefit-card p { position: absolute; right: 34px; bottom: 30px; left: 34px; max-width: 440px; margin: 0; }
.benefit-index { position: absolute; top: 34px; right: 34px; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.benefit-card--dark { color: var(--lime); background: var(--green); }
.benefit-card--cream { color: var(--ink); background: #fff6dd; }
.benefit-card--purple { color: var(--purple-deep); background: var(--purple); }
.benefit-card--blue { color: #143853; background: var(--blue); }

.moments { background: var(--paper); }
.moments-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 70px; }
.moments-heading .eyebrow { align-self: start; }
.moments-grid { display: grid; grid-template-columns: 1.05fr 1.4fr 1fr; gap: 18px; }
.moment { position: relative; overflow: hidden; min-height: 620px; border-radius: var(--radius-card); }
.moment h3 { position: absolute; right: 30px; bottom: 28px; left: 30px; margin: 0; font-size: 31px; letter-spacing: -.05em; line-height: 1; }
.moment-label { position: absolute; z-index: 2; top: 28px; left: 28px; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.moment--coffee { color: #683317; background: #ffd5aa; }
.moment--travel { color: #07364f; background: var(--blue); }
.moment--night { color: var(--lime); background: var(--green); }

.cards-section { color: var(--white); background: var(--green-deep); }
.cards-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: end; margin-bottom: 75px; }
.cards-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; color: var(--lime); }
.cards-heading h2 { color: var(--lime); }
.cards-heading > p:last-child { max-width: 340px; margin: 0 0 8px; font-size: 20px; }
.card-options-home { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.home-card-option { position: relative; min-height: 720px; padding: 26px; border-radius: var(--radius-card); color: var(--ink); }
.home-card-option--virtual { background: var(--purple); }
.home-card-option--metal { background: #d7ded7; }
.home-card-option__top { display: flex; justify-content: space-between; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.home-card-visual-wrap { display: grid; place-items: center; height: 490px; }
.home-card-option__copy { display: flex; gap: 24px; align-items: end; justify-content: space-between; }
.home-card-option__copy h3 { margin: 0 0 7px; font-size: 40px; letter-spacing: -.055em; }
.home-card-option__copy p { max-width: 370px; margin: 0; }
.round-arrow { cursor: pointer; flex: 0 0 auto; width: 62px; height: 62px; border: 0; border-radius: 50%; color: var(--white); background: var(--ink); font-size: 23px; transition: transform .3s var(--ease); }
.round-arrow:hover { transform: rotate(45deg); }

.control-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.control-copy > p:not(.eyebrow) { max-width: 530px; margin: 34px 0; font-size: 20px; }
.control-visual { position: relative; min-height: 680px; }

.how-heading { display: flex; align-items: start; justify-content: space-between; margin-bottom: 75px; }
.how-list { margin: 0; padding: 0; border-top: 2px solid var(--orange-deep); list-style: none; }
.how-list li { display: grid; grid-template-columns: 120px 1fr auto; gap: 40px; align-items: center; min-height: 200px; border-bottom: 2px solid var(--orange-deep); }
.how-number { align-self: start; padding-top: 38px; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.how-list h3 { margin: 0 0 8px; font-size: clamp(34px, 4vw, 60px); letter-spacing: -.055em; line-height: 1; }
.how-list p { max-width: 600px; margin: 0; font-size: 17px; }
.how-icon { display: grid; place-items: center; width: 86px; height: 86px; border: 2px solid var(--orange-deep); border-radius: 50%; font-size: 26px; }

.faq-section { color: var(--lime); background: var(--green); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 70px; }
.faq-list { border-top: 1px solid rgba(223,255,155,.32); }
.faq-item { border-bottom: 1px solid rgba(223,255,155,.32); }
.faq-item h3 { margin: 0; }
.faq-item button { cursor: pointer; display: flex; gap: 30px; align-items: center; justify-content: space-between; width: 100%; padding: 28px 0; border: 0; color: inherit; background: transparent; font-size: clamp(20px, 2vw, 28px); font-weight: 700; text-align: left; letter-spacing: -.035em; }
.faq-item button span { display: grid; flex: 0 0 auto; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(223,255,155,.4); border-radius: 50%; font-weight: 400; transition: transform .35s var(--ease), background-color .3s ease; }
.faq-item button[aria-expanded="true"] span { transform: rotate(45deg); color: var(--green); background: var(--lime); }
.faq-answer { overflow: hidden; padding: 0 70px 30px 0; color: rgba(223,255,155,.76); }
.faq-answer p { max-width: 650px; margin: 0; font-size: 17px; }

.final-cta { position: relative; overflow: hidden; display: grid; min-height: 700px; place-items: center; padding: 100px var(--page-pad); color: var(--purple-deep); background: var(--purple); text-align: center; }
.final-cta__inner { position: relative; z-index: 2; }
.final-cta h2 { margin-bottom: 42px; font-size: clamp(76px, 10vw, 158px); }
.final-cta__orb { position: absolute; width: min(72vw, 900px); aspect-ratio: 1; border: 1px solid rgba(75,17,97,.3); border-radius: 50%; box-shadow: inset 0 0 100px rgba(255,255,255,.25); }
.final-cta__orb::before, .final-cta__orb::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(75,17,97,.25); border-radius: 50%; }
.final-cta__orb::after { inset: 30%; background: rgba(255,255,255,.12); }

.site-footer { padding: 62px var(--page-pad) 26px; color: var(--white); background: var(--ink); }
.footer-top, .footer-bottom { width: min(100%, var(--container)); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-bottom: 70px; }
.brand--footer { color: var(--lime); }
.footer-top p { margin: 0; font-size: 18px; }
.footer-top nav { display: grid; gap: 12px; justify-self: end; }
.footer-top nav a { color: #c5c8c8; text-decoration: none; }
.footer-top nav a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #343838; color: #8e9593; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(42px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Setup flow */
.wizard-dialog {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  max-width: none;
  min-height: 100%;
  height: 100dvh;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
}
.wizard-dialog[hidden] { display: none; }
.wizard-dialog.is-open { display: block; }
html:has(body.wizard-open), body.wizard-open { overflow: hidden; }
.wizard-shell { min-height: 100%; padding: 0 var(--page-pad) 60px; }
.wizard-header { display: flex; align-items: center; justify-content: space-between; width: min(100%, 1180px); height: 90px; margin: 0 auto; color: var(--green); }
.wizard-close { cursor: pointer; display: grid; width: 48px; height: 48px; padding: 0 0 4px; border: 1px solid var(--border); border-radius: 50%; place-items: center; background: var(--white); font-size: 30px; line-height: 1; }
.wizard-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 18px; align-items: center; width: min(100%, 920px); margin: 10px auto 50px; }
.progress-step { display: flex; gap: 10px; align-items: center; color: #949aa5; }
.progress-step span { display: grid; width: 28px; height: 28px; border: 1px solid #c6cad1; border-radius: 50%; place-items: center; font-size: 11px; font-weight: 800; }
.progress-step strong { font-size: 12px; letter-spacing: .03em; white-space: nowrap; }
.progress-step.is-active, .progress-step.is-complete { color: var(--green); }
.progress-step.is-active span { border-color: var(--green); color: var(--white); background: var(--green); }
.progress-step.is-complete span { border-color: var(--lime-bright); color: var(--green); background: var(--lime-bright); }
.progress-line { overflow: hidden; height: 2px; background: #dce0e5; }
.progress-line span { display: block; width: 100%; height: 100%; transform: translateX(-101%); background: var(--green); transition: transform .4s var(--ease); }
.progress-line.is-complete span { transform: none; }
.wizard-content { width: min(100%, 920px); margin: 0 auto; }
.wizard-panel { animation: panelIn .5s var(--ease); }
.wizard-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.wizard-panel__intro { max-width: 670px; margin: 0 auto 30px; text-align: center; }
.wizard-panel__intro h2 { margin: 0 0 16px; color: var(--green); font-size: clamp(48px, 6vw, 76px); font-weight: 900; letter-spacing: -.07em; line-height: .92; }
.wizard-panel__intro p:last-child { max-width: 580px; margin: 0 auto; color: var(--gray-dark); font-size: 17px; }
.wizard-panel__intro--compact { margin-bottom: 36px; }
.wizard-panel__intro--compact h2 { font-size: clamp(44px, 5vw, 64px); }
.connect-visual { position: relative; display: grid; width: min(300px, 70vw); aspect-ratio: 1; margin: 10px auto 18px; border: 1px solid #cdd7d3; border-radius: 50%; place-items: center; }
.connect-visual::before, .connect-visual::after { content: ""; position: absolute; border: 1px solid #d5deda; border-radius: 50%; }
.connect-visual::before { inset: 15%; }
.connect-visual::after { inset: 31%; }
.connect-visual span { position: relative; z-index: 3; width: 70px; height: 70px; transform: rotate(45deg); border: 16px solid var(--green); border-radius: 10px 30px 10px 30px; background: var(--lime); }
.connect-visual i, .connect-visual b { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); animation: orbitDot 7s linear infinite; }
.connect-visual b { background: var(--purple-deep); animation-delay: -3.5s; }
@keyframes orbitDot { from { transform: rotate(0deg) translateX(135px) rotate(0deg); } to { transform: rotate(360deg) translateX(135px) rotate(-360deg); } }
.wizard-panel > .button--wide, .review-view > .button--wide { display: flex; max-width: 420px; margin: 0 auto; }
.wizard-status { min-height: 24px; margin: 15px auto 0; color: var(--gray-dark); font-size: 13px; text-align: center; }
.wizard-card-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0; padding: 0; border: 0; }
.wizard-card-choice { cursor: pointer; position: relative; display: grid; grid-template-columns: 170px 1fr; gap: 25px; align-items: center; min-height: 250px; padding: 25px; border: 2px solid transparent; border-radius: 25px; background: var(--white); box-shadow: 0 18px 50px rgba(7,29,26,.07); transition: transform .3s var(--ease), border-color .3s ease; }
.wizard-card-choice:hover { transform: translateY(-4px); }
.wizard-card-choice:has(input:checked) { border-color: var(--green); }
.wizard-card-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.wizard-card-choice:has(input:focus-visible) { outline: 3px solid var(--lime-bright); outline-offset: 4px; }
.wizard-card-choice__check { position: absolute; z-index: 3; top: 18px; right: 18px; display: none; width: 28px; height: 28px; border-radius: 50%; place-items: center; color: var(--white); background: var(--green); font-size: 13px; }
.wizard-card-choice:has(input:checked) .wizard-card-choice__check { display: grid; }
.wizard-card-choice__copy { display: grid; align-content: center; }
.wizard-card-choice__copy strong { font-size: 26px; letter-spacing: -.04em; }
.wizard-card-choice__copy small { margin-top: 7px; color: var(--gray-dark); font-size: 13px; }
.wizard-card-choice__copy em { width: max-content; margin-top: 24px; padding: 7px 10px; border-radius: 999px; color: var(--green); background: var(--lime); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.selection-error { text-align: center; }
.wizard-actions { display: flex; gap: 12px; justify-content: space-between; margin-top: 28px; }
.wizard-actions--review { justify-content: center; margin-top: 12px; }
#order-form { max-width: 820px; margin: 0 auto; }
.shipping-fields { display: grid; gap: 17px; margin-bottom: 17px; }
.shipping-fields[hidden] { display: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field-row--three { grid-template-columns: 1fr 1fr .8fr; }
.field label { display: flex; justify-content: space-between; margin: 0 0 7px 3px; font-size: 12px; font-weight: 800; }
.field label span { color: #8d939c; font-weight: 400; }
.field input, .field select { width: 100%; height: 56px; padding: 0 17px; border: 1px solid #ccd1d7; border-radius: 13px; color: var(--ink); background: var(--white); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field select { appearance: auto; }
.field input:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(186,242,74,.35); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #b82d1c; }
.field-help { margin: 7px 3px 0; color: var(--gray-dark); font-size: 11px; }
.field-error { margin: 6px 3px 0; color: #a42a0f; font-size: 12px; font-weight: 700; }
.privacy-note { display: flex; gap: 13px; align-items: center; margin-top: 19px; padding: 15px 17px; border-radius: 14px; color: var(--green); background: var(--lime); }
.privacy-note > span { font-size: 27px; }
.privacy-note p { display: grid; margin: 0; font-size: 12px; }
.privacy-note strong { font-size: 13px; }
.review-view { max-width: 700px; margin: 0 auto; }
.review-card { overflow: hidden; margin-bottom: 18px; border-radius: 22px; background: var(--white); box-shadow: 0 18px 50px rgba(7,29,26,.08); }
.review-card__visual { display: grid; min-height: 190px; place-items: center; background: var(--lime); }
.review-row { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 17px 22px; border-top: 1px solid #eceff2; }
.review-row span { color: var(--gray-dark); font-size: 12px; }
.review-row strong { font-size: 14px; white-space: pre-line; }
.edit-link { cursor: pointer; display: block; margin: 0 0 18px; padding: 7px 0; border: 0; color: var(--green); background: transparent; font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 1100px) {
  :root { --page-pad: 20px; --radius-section: 36px; }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; height: 84px; }
  .menu-toggle { display: block; }
  .hero { min-height: 1000px; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr 1fr; min-height: 760px; }
  .hero-title { font-size: clamp(72px, 9vw, 100px); }
  .hero-visual { height: 620px; }
  .moments-grid { grid-template-columns: 1fr 1fr; }
  .moment:last-child { grid-column: 1 / -1; min-height: 520px; }
  .control-grid { gap: 30px; }
  .wizard-card-choice { grid-template-columns: 1fr; text-align: center; }
  .wizard-card-choice__copy em { justify-self: center; }
}

@media (max-width: 767px) {
  :root { --page-pad: 16px; --radius-card: 22px; }
  body { font-size: 15px; }
  .header-inner { height: 76px; }
  .brand { font-size: 18px; }
  .header-actions .button { display: none; }
  .menu-toggle { width: 44px; height: 44px; }
  .mobile-menu { top: 70px; }
  .hero { min-height: 960px; padding: 112px var(--page-pad) 28px; }
  .hero-grid { display: flex; flex-direction: column; gap: 10px; min-height: 780px; }
  .hero-copy { width: 100%; }
  .hero-title { font-size: clamp(58px, 18.5vw, 80px); line-height: .82; }
  .hero-intro { max-width: 90%; margin-top: 24px; font-size: 17px; }
  .hero-actions { gap: 18px; margin-top: 27px; }
  .button--hero { min-height: 58px; padding-inline: 25px; }
  .text-link { font-size: 12px; }
  .hero-visual { width: 100%; height: 390px; }
  .hero-foot { margin-top: 20px; padding-top: 18px; }
  .hero-foot span:last-child { display: none; }
  .section { padding: 88px var(--page-pad); }
  .section-heading, .cards-heading { display: block; margin-bottom: 46px; }
  .section-heading h2, .moments-heading h2, .cards-heading h2, .control-copy h2, .how-heading h2, .faq-heading h2, .final-cta h2 { font-size: clamp(50px, 15vw, 72px); line-height: .88; }
  .benefit-grid, .card-options-home, .control-grid, .faq-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 420px; padding: 25px; }
  .benefit-card h3 { right: 25px; bottom: 72px; left: 25px; font-size: 30px; }
  .benefit-card p { right: 25px; bottom: 23px; left: 25px; }
  .benefit-index { top: 25px; right: 25px; }
  .moments-heading, .how-heading { display: block; margin-bottom: 45px; }
  .moments-grid { grid-template-columns: 1fr; }
  .moment, .moment:last-child { grid-column: auto; min-height: 500px; }
  .cards-heading > p:last-child { margin-top: 20px; }
  .home-card-option { min-height: 570px; }
  .home-card-visual-wrap { height: 360px; }
  .home-card-option__copy h3 { font-size: 32px; }
  .control-copy > p:not(.eyebrow) { font-size: 17px; }
  .control-visual { min-height: 540px; }
  .how-list li { grid-template-columns: 55px 1fr; gap: 16px; min-height: 180px; padding: 25px 0; }
  .how-number { padding-top: 10px; }
  .how-icon { display: none; }
  .how-list h3 { font-size: 34px; }
  .faq-grid { gap: 50px; }
  .faq-heading { position: static; }
  .faq-answer { padding-right: 20px; }
  .final-cta { min-height: 560px; }
  .final-cta h2 { margin-bottom: 32px; font-size: clamp(60px, 17vw, 88px); }
  .final-cta__orb { width: 130vw; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-top p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { flex-direction: column; gap: 10px; }

  .wizard-shell { padding-bottom: 30px; }
  .wizard-header { height: 72px; }
  .wizard-progress { grid-template-columns: auto 1fr auto 1fr auto; gap: 8px; margin: 4px auto 33px; }
  .progress-step { display: grid; justify-items: center; gap: 5px; }
  .progress-step strong { font-size: 9px; }
  .progress-step span { width: 25px; height: 25px; }
  .wizard-panel__intro { margin-bottom: 25px; }
  .wizard-panel__intro h2, .wizard-panel__intro--compact h2 { font-size: 45px; }
  .wizard-panel__intro p:last-child { font-size: 15px; }
  .connect-visual { width: 230px; }
  .connect-visual i, .connect-visual b { animation-name: orbitDotMobile; }
  @keyframes orbitDotMobile { from { transform: rotate(0deg) translateX(102px) rotate(0deg); } to { transform: rotate(360deg) translateX(102px) rotate(-360deg); } }
  .wizard-card-options { grid-template-columns: 1fr; }
  .wizard-card-choice { grid-template-columns: 115px 1fr; min-height: 170px; padding: 18px; text-align: left; }
  .wizard-card-choice__copy strong { font-size: 21px; }
  .wizard-card-choice__copy small { font-size: 11px; }
  .wizard-card-choice__copy em { justify-self: start; margin-top: 12px; }
  .field-row, .field-row--three { grid-template-columns: 1fr; }
  .review-card__visual { min-height: 150px; }
  .review-row { grid-template-columns: 105px 1fr; gap: 15px; padding: 15px; }
  .wizard-actions { position: sticky; z-index: 3; bottom: 0; margin-inline: -16px; padding: 16px; background: linear-gradient(180deg,rgba(247,249,252,0),var(--paper) 24%); }
}

@media (max-width: 360px) {
  .hero { min-height: 900px; padding-top: 100px; }
  .hero-title { font-size: 54px; }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-visual { height: 330px; }
  .home-card-option { padding: 18px; }
  .wizard-shell { padding-inline: 12px; }
  .wizard-progress { gap: 4px; }
  .progress-step strong { font-size: 8px; }
  .wizard-card-choice { grid-template-columns: 94px 1fr; gap: 13px; padding: 14px; }
  .wizard-card-choice__copy strong { font-size: 18px; }
}

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

/* MetaMask reference restoration */
.hero-title,
.section-heading h2,
.moments-heading h2,
.cards-heading h2,
.control-copy h2,
.how-heading h2,
.faq-heading h2,
.final-cta h2,
.wizard-panel__intro h2 {
  font-family: "MetaMask Sans", "MetaMask Euclid", Arial, sans-serif;
}
.section-heading h2 { font-size: clamp(52px, 4vw, 72px); }

.brand { line-height: 0; }
.brand-logo { width: 94px; height: auto; }
.brand-logo--loader {
  width: 142px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(48%) saturate(640%) hue-rotate(30deg) brightness(105%) contrast(101%);
}
.page-loader__brand { animation: loaderPulse 1s ease-in-out infinite alternate; }
.site-header { color: var(--green-deep); }
.desktop-nav a:hover { color: var(--lime); background: var(--green-deep); }

.hero {
  min-height: 900px;
  color: var(--green-deep);
  background: var(--lime);
}
.hero-grid {
  grid-template-columns: minmax(0, .76fr) minmax(560px, 1.24fr);
  min-height: 660px;
}
.hero-title {
  font-family: "MMPolyVariable", Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  font-variation-settings: "wdth" 20, "RESO" 5;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
}
.hero-title span:nth-child(2) { color: inherit; }
.hero-intro { max-width: 510px; }
.hero-visual {
  display: grid;
  height: 650px;
  place-items: center;
  perspective: none;
}
.hero-card-image {
  width: 116%;
  max-width: none;
  height: auto;
  transform-origin: center;
  animation: cardFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 30px rgba(1, 51, 48, .14));
}
.hero-foot { border-color: rgba(1, 51, 48, .25); }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50% { transform: translateY(-13px) rotate(.4deg); }
}

@media (min-width: 768px) {
  .hero-title { font-size: 5.7553956835vw; }
}

@media (min-width: 1025px) {
  .hero-title { font-size: min(7.2222222222vw, 138.6666667px); }
}

.marquee-band { color: var(--lime); background: var(--green-deep); }
.marquee-track i { background: var(--lime); }
.section--lime { color: var(--green-deep); background: var(--lime); }
.benefit-card { min-height: 570px; }
.benefit-card--dark { color: var(--lime); background: var(--green-deep); }
.benefit-card--cream { color: var(--orange-deep); background: #ffa680; }
.benefit-card--purple { color: var(--purple-deep); background: var(--purple); }
.benefit-card--blue { color: var(--blue-deep); background: var(--blue); }
.benefit-asset {
  position: absolute;
  top: 54px;
  right: 54px;
  left: 54px;
  display: grid;
  height: 310px;
  overflow: hidden;
  margin: 0;
  place-items: center;
}
.benefit-asset img { width: auto; max-width: 100%; height: auto; max-height: 100%; object-fit: contain; }
.benefit-card h3 { bottom: 105px; }

.moments { color: var(--green-deep); background: var(--paper); }
.moment--coffee { color: var(--orange-deep); background: #ffa680; }
.moment--travel { color: var(--blue-deep); background: var(--blue); }
.moment--night { color: var(--green-deep); background: var(--gray); }
.moment-image {
  position: absolute;
  top: 50px;
  left: 5%;
  width: 90%;
  height: 76%;
  object-fit: contain;
  transition: transform .65s var(--ease);
}
.moment:hover .moment-image { transform: translateY(-8px) scale(1.025); }
.moment h3, .moment-label { z-index: 2; }

.cards-section { color: var(--green-deep); background: var(--lime); }
.cards-heading .eyebrow, .cards-heading h2 { color: var(--green-deep); }
.home-card-option--virtual { background: #ffa680; }
.home-card-option--metal { background: var(--gray); }
.home-card-visual-wrap { height: 490px; }
.original-card {
  max-width: 88%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 32px 35px rgba(1, 51, 48, .15));
  transition: transform .6s var(--ease);
}
.original-card--virtual { width: 470px; transform: rotate(-4deg); }
.original-card--metal { width: 285px; transform: rotate(4deg); }
.home-card-option:hover .original-card { transform: rotate(0) translateY(-10px) scale(1.025); }

.section--purple { color: var(--purple-deep); background: #eac2ff; }
.control-visual { display: grid; min-height: 680px; place-items: center; }
.control-original-image {
  width: min(100%, 590px);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(61, 6, 95, .18));
}
.section--orange { color: var(--orange-deep); background: #ffa680; }

.faq-section { color: var(--green-deep); background: var(--lime); }
.faq-heading h2 {
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: .88;
}
.faq-list, .faq-item { border-color: rgba(1, 51, 48, .25); }
.faq-item button span { border-color: rgba(1, 51, 48, .4); }
.faq-item button[aria-expanded="true"] span { color: var(--lime); background: var(--green-deep); }
.faq-answer { color: rgba(1, 51, 48, .78); }
.final-cta { color: var(--green-deep); background: var(--lime-bright); }
.final-cta__orb, .final-cta__orb::before, .final-cta__orb::after { border-color: rgba(1, 51, 48, .28); }
.site-footer { color: var(--green-deep); background: var(--white); }
.brand--footer { color: var(--green-deep); }
.footer-top nav a { color: var(--gray-dark); }
.footer-top nav a:hover { color: var(--green-deep); }
.footer-bottom { border-color: var(--gray); color: var(--gray-dark); }

.wizard-header { color: var(--green-deep); }
.wizard-card-image {
  justify-self: center;
  width: 170px;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(1, 51, 48, .13));
}
.wizard-card-image--metal { width: 126px; }
.review-original-card {
  width: 220px;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 17px 19px rgba(1, 51, 48, .14));
}
.review-original-card--metal { width: 132px; }

@media (max-width: 1100px) {
  .hero { min-height: 850px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; min-height: 680px; }
  .hero-visual { height: 590px; }
  .hero-card-image { width: 132%; }
}

@media (max-width: 767px) {
  .brand-logo { width: 78px; }
  .hero { min-height: 930px; padding-top: 100px; }
  .hero-grid { gap: 6px; min-height: 790px; }
  .hero-title { font-size: 48px; }
  .section-heading h2 { font-size: clamp(48px, 14.5vw, 68px); }
  .faq-heading h2 { font-size: clamp(44px, 12vw, 54px); line-height: .9; }
  .hero-intro { max-width: 100%; font-size: 16px; }
  .hero-visual { height: 345px; }
  .hero-card-image { width: 116%; }
  .benefit-card { min-height: 490px; }
  .benefit-asset { top: 48px; right: 32px; left: 32px; height: 255px; }
  .benefit-card h3 { bottom: 108px; }
  .moment-image { top: 46px; height: 74%; }
  .home-card-visual-wrap { height: 350px; }
  .original-card--virtual { width: 320px; }
  .original-card--metal { width: 205px; }
  .control-visual { min-height: 480px; }
  .control-original-image { max-height: 470px; }
  .wizard-card-image { width: 115px; max-height: 125px; }
  .wizard-card-image--metal { width: 84px; }
}

@media (max-width: 360px) {
  .hero { min-height: 875px; }
  .hero-title { font-size: 48px; }
  .hero-visual { height: 305px; }
  .hero-card-image { width: 120%; }
  .home-card-visual-wrap { height: 320px; }
  .original-card--virtual { width: 260px; }
  .original-card--metal { width: 170px; }
  .wizard-card-image { width: 94px; }
  .wizard-card-image--metal { width: 70px; }
}
