/* ============ SafeSend — fonts ============ */
@font-face{font-family:"SafeSend";font-style:normal;font-weight:200;font-display:swap;src:url(assets/fonts/SafeSend-Light.woff2) format("woff2")}
@font-face{font-family:"SafeSend";font-style:normal;font-weight:300;font-display:swap;src:url(assets/fonts/SafeSend-Book.woff2) format("woff2")}
@font-face{font-family:"SafeSend";font-style:normal;font-weight:350;font-display:swap;src:url(assets/fonts/SafeSend-Book.woff2) format("woff2")}
@font-face{font-family:"SafeSend";font-style:normal;font-weight:400;font-display:swap;src:url(assets/fonts/SafeSend-Regular.woff2) format("woff2")}
@font-face{font-family:"SafeSend";font-style:normal;font-weight:500;font-display:swap;src:url(assets/fonts/SafeSend-Medium.woff2) format("woff2")}
@font-face{font-family:"SafeSend";font-style:normal;font-weight:700;font-display:swap;src:url(assets/fonts/SafeSend-Bold.woff2) format("woff2")}

/* ============ tokens ============ */
:root{
  --purple:#FF7A45;          /* brand accent (orange) */
  --purple-strong:#F2652F;   /* accent hover */
  --ink:#3A241A;             /* primary text — warm dark */
  --ink-2:#2A1810;
  --muted:#8C7C72;
  --muted-2:#A89A91;
  --cream:#FFFDF8;
  --lavender:#FFE0CE;        /* soft accent surface */
  --bg:#FFF7F2;              /* page background — warm */
  --dark:#1C1C1C;
  --lime:#F1FF52;
  --orange:#FF7243;
  --grey:#EDE7E3;
  --blue:#4A87F2;
  --green:#2EC08B;
  --pink:#FFDCCB;
  --pale:#FFEFC4;
  --yellow:#FFD13F;
  --line:#F6E2D6;
  --nav-h:80px;
}
*{box-sizing:border-box}
html{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:"SafeSend",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  font-weight:400;line-height:1.35;overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img,video{display:block;max-width:100%}
ul{margin:0;padding:0;list-style:none}
button{font-family:inherit;cursor:pointer}
::selection{background:var(--purple);color:#1c1c1c}

.wrap{width:100%;max-width:1440px;margin:0 auto;padding:0 24px}
@media(max-width:767px){.wrap{padding:0 16px}}

/* ============ NAV ============ */
.nav{position:fixed;top:0;left:0;right:0;z-index:100;height:var(--nav-h);display:flex;align-items:center;justify-content:center;pointer-events:none}
.nav-inner{
  pointer-events:auto;display:flex;align-items:center;gap:8px;
  width:calc(100% - 48px);max-width:1392px;height:56px;padding:0 8px 0 22px;
  background:rgba(255,253,248,.72);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-radius:100px;box-shadow:0 4px 24px rgba(58,36,26,.08),0 0 0 1px rgba(58,36,26,.04);
}
.nav-logo{display:flex;align-items:center;color:var(--ink);height:100%;flex-shrink:0}
.nav-logo svg{height:22px;width:auto}
.nav-links{display:flex;align-items:center;gap:2px;margin:0 auto}
.nav-link{display:flex;align-items:center;gap:4px;padding:9px 14px;border-radius:100px;font-size:15px;font-weight:400;color:var(--ink);transition:background .2s ease}
.nav-link:hover{background:rgba(58,36,26,.06)}
.nav-link svg{width:16px;height:16px;opacity:.9}
.nav-right{display:flex;align-items:center;gap:6px;flex-shrink:0}
.nav-search{width:40px;height:40px;border-radius:100px;display:flex;align-items:center;justify-content:center;background:transparent;border:none;color:var(--ink);transition:background .2s}
.nav-search:hover{background:rgba(58,36,26,.06)}
.btn-download{display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 20px;border-radius:100px;background:var(--purple);color:#3A241A;font-size:15px;font-weight:500;border:none;transition:background .2s,transform .2s}
.btn-download:hover{background:var(--purple-strong)}
.nav-burger{display:none;width:40px;height:40px;border-radius:100px;align-items:center;justify-content:center;background:transparent;border:none;color:var(--ink)}
@media(max-width:1023px){
  .nav-links{display:none}
  .nav-burger{display:flex}
  .nav-inner{height:56px}
}
@media(max-width:520px){
  .btn-download .full{display:none}
}

/* ============ HERO ============ */
main{display:block}
.hero{padding:calc(var(--nav-h) + 8px) 0 0}
.hero-card{
  position:relative;border-radius:40px;overflow:hidden;background:#D8D6D4;
  height:calc(100svh - 96px);min-height:600px;max-height:860px;display:flex;align-items:center;justify-content:center;
}
.hero-card video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
/* own hero backdrop — warm drifting light, no external footage */
.hero-bg{position:absolute;inset:0;z-index:0;overflow:hidden;background:
  radial-gradient(120% 100% at 50% 120%,#2A150C 0%,#140F0C 60%)}
.hero-bg span{position:absolute;border-radius:50%;filter:blur(70px);opacity:.72;will-change:transform}
.hero-bg span:nth-child(1){width:62%;height:70%;left:-12%;top:-18%;
  background:radial-gradient(circle,#FF7A45,transparent 68%);animation:rc-drift1 22s ease-in-out infinite alternate}
.hero-bg span:nth-child(2){width:58%;height:66%;right:-14%;top:6%;
  background:radial-gradient(circle,#E64A19,transparent 68%);animation:rc-drift2 27s ease-in-out infinite alternate}
.hero-bg span:nth-child(3){width:70%;height:60%;left:16%;bottom:-24%;
  background:radial-gradient(circle,#FFB74D,transparent 70%);opacity:.5;animation:rc-drift3 31s ease-in-out infinite alternate}
@keyframes rc-drift1{to{transform:translate3d(14%,12%,0) scale(1.16)}}
@keyframes rc-drift2{to{transform:translate3d(-16%,16%,0) scale(1.1)}}
@keyframes rc-drift3{to{transform:translate3d(10%,-14%,0) scale(1.2)}}
@media(prefers-reduced-motion:reduce){.hero-bg span{animation:none}}
/* light scrim — the footage is light, so the headline is dark and sits on a soft cream glow */
.hero-card::after{content:"";position:absolute;inset:0;z-index:1;background:
  radial-gradient(62% 50% at 50% 46%,rgba(255,253,248,.88) 0%,rgba(255,253,248,.62) 42%,rgba(255,253,248,0) 76%),
  linear-gradient(180deg,rgba(255,253,248,.22) 0%,rgba(255,253,248,0) 26%);}
.hero-content{position:relative;z-index:2;text-align:center;padding:40px 24px;max-width:1000px}
.hero-eyebrow{color:rgba(58,36,26,.74);font-size:clamp(15px,1.85vw,26px);font-weight:400;margin:0 0 18px;letter-spacing:-.01em}
.hero-title{color:#2A1810;font-weight:400;font-size:clamp(38px,5.55vw,92px);line-height:1.03;letter-spacing:-.03em;margin:0 auto;max-width:16ch}
/* dark pill reads better than a cream one on light footage */
.hero-cta .btn-pill-light{background:var(--ink);color:var(--cream)}
.hero-cta .btn-pill-light:hover{background:#2A1810}
.hero-title span{display:block;overflow:hidden}
.hero-cta{margin-top:40px;display:flex;justify-content:center}
.btn-pill-light{display:inline-flex;align-items:center;gap:10px;height:56px;padding:0 30px;border-radius:100px;background:rgba(255,253,248,.92);color:#3A241A;font-size:17px;font-weight:500;transition:background .2s,transform .2s}
.btn-pill-light:hover{background:#fff;transform:translateY(-1px)}
.btn-pill-light svg{width:22px;height:22px}
@media(max-width:767px){
  .hero-card{border-radius:28px;min-height:calc(100svh - 120px)}
  .hero-title{font-size:clamp(34px,10.5vw,60px)}
  .hero-eyebrow{font-size:clamp(15px,4.8vw,22px)}
}

/* ============ SECTION (feature) ============ */
.feature{padding:76px 0 0;position:relative}
.sec-head{display:flex;flex-direction:column;align-items:center;text-align:center;padding:60px 0 20px}
.sec-title{
  font-weight:350;letter-spacing:-.035em;line-height:.98;margin:0;color:var(--ink);
  font-size:clamp(44px,8.68vw,150px);
}
.sec-title .ghost-inline{display:inline-block;vertical-align:middle;width:.72em;height:.72em;color:var(--purple);margin:0 .04em;transform:translateY(-.04em)}
.see-more{
  margin-top:44px;display:inline-flex;align-items:center;gap:8px;height:52px;padding:0 26px;
  border-radius:100px;background:var(--lavender);color:var(--ink);font-size:16px;font-weight:500;transition:background .2s,transform .2s;
}
.see-more:hover{background:#FFD0B6;transform:translateY(-1px)}
.see-more svg{width:20px;height:20px}
@media(max-width:767px){.sec-head{padding:32px 0 12px}.see-more{margin-top:28px}}

/* category row */
.cat-row{display:flex;align-items:center;justify-content:space-between;margin:36px 0 20px}
.cat-label{display:inline-flex;align-items:center;gap:10px;height:44px;padding:0 18px;border-radius:100px;background:var(--cream);box-shadow:0 0 0 1px rgba(58,36,26,.05);color:var(--ink);font-size:17px;font-weight:400}
.cat-label svg{width:22px;height:22px;color:var(--ink)}
.cat-dots{display:flex;align-items:center;gap:4px;padding:4px;background:var(--cream);border-radius:100px;box-shadow:0 0 0 1px rgba(58,36,26,.05)}
.cat-arrow{width:36px;height:36px;border-radius:100px;border:none;background:transparent;color:var(--ink);display:flex;align-items:center;justify-content:center;transition:background .2s}
.cat-arrow:hover{background:rgba(58,36,26,.07)}
.cat-arrow svg{width:20px;height:20px}
.cat-arrow:disabled{opacity:.3;cursor:default}

/* carousel */
.carousel{display:flex;gap:24px;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x mandatory;padding-bottom:8px;-ms-overflow-style:none;scrollbar-width:none;cursor:grab}
.carousel::-webkit-scrollbar{display:none}
.carousel.dragging{cursor:grabbing;scroll-snap-type:none;scroll-behavior:auto}
.card{
  position:relative;flex:0 0 clamp(280px,26vw,384px);aspect-ratio:.747;border-radius:24px;overflow:hidden;
  scroll-snap-align:start;box-shadow:0 1px 3px rgba(58,36,26,.12);transform:translateZ(0);
}
.card video{position:absolute;inset:-1px;width:calc(100% + 2px);height:calc(100% + 2px);object-fit:cover;z-index:0}
.card-body{position:relative;z-index:1;padding:44px 44px 0;display:flex;flex-direction:column}
.card-cap{font-size:clamp(24px,2.08vw,34px);line-height:1.1;letter-spacing:-.02em;font-weight:400;margin:0;max-width:12ch}
.card.grey{background:var(--grey);color:#1c1c1c}
.card.purple{background:var(--purple);color:#1c1c1c}
.card.lavender{background:var(--lavender);color:#1c1c1c}
.card.dark{background:var(--dark);color:var(--cream)}
.card.deep{background:var(--ink);color:var(--cream)}
.card.blue{background:var(--blue);color:var(--cream)}
.card.green{background:var(--green);color:#1c1c1c}
.card.cream{background:var(--cream);color:#1c1c1c}
.card.pale{background:var(--pale);color:#1c1c1c}
.card.pink{background:var(--pink);color:#1c1c1c}
.card.yellow{background:var(--yellow);color:#1c1c1c}
@media(max-width:767px){
  .card{flex-basis:78vw}
  .card-body{padding:32px 32px 0}
  .cat-row{margin:24px 0 16px}
}

/* ============ CTA ============ */
.cta{padding:120px 0 40px;text-align:center}
.cta-eyebrow{font-size:clamp(20px,3vw,34px);color:var(--muted);font-weight:350;margin:0 0 6px;letter-spacing:-.02em}
.cta-title{font-weight:350;font-size:clamp(44px,8.68vw,150px);line-height:.98;letter-spacing:-.035em;margin:0;color:var(--ink)}
.cta-card{
  margin:56px auto 0;max-width:1392px;border-radius:40px;background:#151217;color:var(--cream);
  min-height:520px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:34px;
  position:relative;overflow:hidden;padding:60px 24px;
}
.cta-card::before{content:"";position:absolute;inset:0;background:
  radial-gradient(60% 80% at 18% 20%,rgba(255,122,69,.42),transparent 60%),
  radial-gradient(50% 70% at 85% 80%,rgba(255,183,77,.28),transparent 60%),
  radial-gradient(40% 60% at 60% 30%,rgba(230,74,25,.22),transparent 60%);
  z-index:0}
.cta-card > *{position:relative;z-index:1}
.cta-card-title{font-weight:350;font-size:clamp(40px,6vw,86px);letter-spacing:-.03em;margin:0;text-align:center}
@media(max-width:767px){.cta{padding:64px 0 24px}.cta-card{border-radius:28px;min-height:400px}}

/* ============ LEGAL ============ */
.legal{padding:64px 0 0}
.legal p{max-width:1100px;margin:0 auto 16px;color:var(--muted);font-size:13px;line-height:1.6;font-weight:400;text-align:left}

/* ============ NEWSLETTER ============ */
.news{padding:80px 0}
.news-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:32px;border-top:1px solid var(--line);padding-top:56px}
.news-copy{font-size:clamp(22px,2.6vw,34px);font-weight:350;letter-spacing:-.02em;color:var(--ink);max-width:16ch;line-height:1.1}
.news-form{display:flex;gap:10px;flex-wrap:wrap}
.news-input{height:56px;padding:0 22px;border-radius:100px;border:1px solid var(--line);background:var(--cream);font-size:16px;color:var(--ink);min-width:280px;outline:none}
.news-input::placeholder{color:var(--muted-2)}
.news-input:focus{border-color:var(--purple)}
.news-submit{height:56px;padding:0 30px;border-radius:100px;background:var(--ink);color:var(--cream);border:none;font-size:16px;font-weight:500;transition:opacity .2s}
.news-submit:hover{opacity:.9}

/* ============ FOOTER ============ */
.footer{background:var(--cream);border-radius:40px 40px 0 0;padding:72px 0 40px;margin-top:20px}
.footer-top{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:32px}
.footer-brand svg{height:26px;color:var(--ink)}
.footer-col h4{font-size:14px;font-weight:500;color:var(--muted);margin:0 0 18px;letter-spacing:.01em}
.footer-col ul li{margin-bottom:12px}
.footer-col ul li a{font-size:15px;color:var(--ink);font-weight:400;transition:color .2s}
.footer-col ul li a:hover{color:var(--purple-strong)}
.footer-bottom{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;margin-top:64px;padding-top:28px;border-top:1px solid var(--line)}
.footer-legal{display:flex;gap:22px;flex-wrap:wrap;color:var(--muted);font-size:14px}
.footer-legal a:hover{color:var(--ink)}
.footer-copy{color:var(--muted);font-size:14px}
@media(max-width:900px){.footer-top{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1;margin-bottom:8px}}
@media(max-width:520px){.footer-top{grid-template-columns:1fr 1fr}}

/* ============ COOKIE BANNER ============ */
.cookie{position:fixed;bottom:20px;right:20px;z-index:200;max-width:360px;background:var(--cream);border-radius:20px;box-shadow:0 12px 40px rgba(58,36,26,.18),0 0 0 1px rgba(58,36,26,.05);padding:20px}
.cookie p{margin:0 0 16px;font-size:13px;line-height:1.5;color:var(--ink)}
.cookie a{color:var(--purple-strong);text-decoration:underline}
.cookie-btns{display:flex;gap:10px}
.cookie-btns button{flex:1;height:42px;border-radius:100px;border:none;font-size:14px;font-weight:500}
.cookie-reject{background:var(--lavender);color:var(--ink)}
.cookie-accept{background:var(--purple);color:#3A241A}
.cookie-x{position:absolute;top:14px;right:14px;background:none;border:none;color:var(--muted);font-size:16px;line-height:1}
.cookie.hide{display:none}
@media(max-width:520px){.cookie{left:12px;right:12px;bottom:12px;max-width:none}}

/* ============ reveal ============ */
.reveal{opacity:0;transform:translateY(24px) scale(.985);transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1)}
.reveal.in{opacity:1;transform:none}

/* mobile menu */
.mobile-menu{position:fixed;inset:0;z-index:150;background:var(--bg);padding:90px 24px 40px;display:none;flex-direction:column;gap:6px}
.mobile-menu.open{display:flex}
.mobile-menu a{padding:16px 8px;font-size:22px;font-weight:400;border-bottom:1px solid var(--line)}

/* ============================================================
   SAFESEND — brand mark
   ============================================================ */
.nav-logo{gap:9px}
.logo-mark{height:23px;width:23px;flex-shrink:0}
.logo-word{font-size:24px;font-weight:700;letter-spacing:-.035em;line-height:1}
.footer-brand{display:flex;align-items:center;gap:10px;color:var(--ink)}
.footer-brand .logo-mark{height:26px;width:26px}
.footer-brand .logo-word{font-size:27px}

/* ============================================================
   SAFESEND — card artwork
   Replaces the inherited footage on cards that carried another
   wallet's branding. Pure CSS/SVG, no assets.
   ============================================================ */
.card-art{
  position:absolute;left:0;right:0;bottom:0;z-index:1;
  padding:0 clamp(22px,2.3vw,32px) clamp(24px,2.4vw,34px);
  display:flex;flex-direction:column;gap:10px;
}
@media(max-width:767px){.card-art{padding:0 26px 28px}}
.card-art .ui{
  background:rgba(255,253,248,.10);border:1px solid rgba(255,253,248,.17);
  border-radius:16px;padding:14px 16px;
}
.card.grey .card-art .ui,.card.cream .card-art .ui,.card.pale .card-art .ui,
.card.pink .card-art .ui,.card.purple .card-art .ui{
  background:rgba(58,36,26,.06);border-color:rgba(58,36,26,.11);
}
.card-art .lbl{font-size:12px;font-weight:500;opacity:.6}
.card-art .big{font-size:clamp(23px,2vw,29px);font-weight:500;letter-spacing:-.02em;line-height:1.1;margin-top:3px}
.card-art .mono{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:13px}
.card-art .row{display:flex;align-items:center;justify-content:space-between;gap:10px}

.rc-chip{display:inline-flex;align-items:center;gap:7px;padding:7px 13px;border-radius:100px;
  font-size:13px;font-weight:500;white-space:nowrap}
.rc-chip .dot{width:7px;height:7px;border-radius:50%;background:currentColor;animation:rc-blink 1.9s ease-in-out infinite}
@keyframes rc-blink{0%,100%{opacity:1}50%{opacity:.22}}
.rc-chip.live{background:rgba(255,122,69,.22);color:#8A3B14}
.card.dark .rc-chip.live,.card.deep .rc-chip.live{background:rgba(255,122,69,.26);color:#FFC7A6}
.rc-chip.done{background:rgba(58,36,26,.10);color:rgba(58,36,26,.55)}
.card.dark .rc-chip.done,.card.deep .rc-chip.done,.card.blue .rc-chip.done{background:rgba(255,253,248,.14);color:rgba(255,253,248,.62)}
.rc-chip.good{background:rgba(46,192,139,.20);color:#1B7A57}
.card.dark .rc-chip.good,.card.deep .rc-chip.good{background:rgba(46,192,139,.22);color:#7EE7BC}

.rc-sep{display:inline-flex;align-items:center}
.rc-sep svg{width:17px;height:17px;opacity:.42}

.rc-undo{display:flex;align-items:center;justify-content:center;padding:4px 0}
.rc-undo svg{width:100%;height:auto;max-height:108px}
.rc-undo .trail{stroke-dasharray:5 7;opacity:.45}

.rc-ring{display:flex;align-items:center;gap:15px}
.rc-ring .ring{position:relative;width:72px;height:72px;flex-shrink:0}
.rc-ring svg{transform:rotate(-90deg);width:72px;height:72px}
.rc-ring .track{stroke:currentColor;opacity:.16}
.rc-ring .prog{stroke:currentColor;stroke-linecap:round;stroke-dasharray:201;stroke-dashoffset:58}
.rc-ring .ring b{position:absolute;inset:0;display:grid;place-items:center;font-size:19px;font-weight:500;letter-spacing:-.02em}
.rc-ring .txt{font-size:14px;line-height:1.35;opacity:.72}

.rc-addr i{font-style:normal;background:rgba(230,74,25,.22);border-radius:4px;padding:1px 3px;box-shadow:0 1.5px 0 #E5484D inset}

.rc-btn{display:flex;align-items:center;justify-content:center;gap:9px;height:50px;border-radius:100px;
  background:var(--cream);color:#3A241A;font-size:16px;font-weight:500}
.rc-btn svg{width:19px;height:19px}

.rc-list{display:flex;flex-direction:column;gap:8px}
.rc-list .it{display:flex;align-items:center;justify-content:space-between;gap:10px;
  background:rgba(255,253,248,.09);border:1px solid rgba(255,253,248,.14);border-radius:13px;padding:11px 13px}
.card.grey .rc-list .it,.card.cream .rc-list .it,.card.pale .rc-list .it,.card.pink .rc-list .it{
  background:rgba(58,36,26,.05);border-color:rgba(58,36,26,.10)}
.rc-list .it .nm{font-size:14px;font-weight:500;flex:1;min-width:0}
.rc-list .it .amt{font-size:14px;font-weight:500;opacity:.75;white-space:nowrap}

/* =========================================================================
   DIFFERENTIATION PASS
   The layout had drifted very close to the wallet site it was cloned from.
   Same restraint, different silhouette: a flush nav instead of a floating
   pill, a hero anchored left instead of a centred slab, section headings
   that sit on a numbered rule, and rectangles where everything used to be
   a lozenge.
   ========================================================================= */

/* ---- nav: flush, hairline, no floating capsule ---- */
.nav{height:68px}
.nav-inner{
  width:100%;max-width:none;height:68px;padding:0 32px;border-radius:0;
  background:rgba(255,247,242,.82);box-shadow:none;
  border-bottom:1px solid transparent;transition:border-color .25s ease,background .25s ease;
}
.nav.scrolled .nav-inner{border-bottom-color:var(--line);background:rgba(255,247,242,.94)}
.nav-links{gap:26px;margin-left:52px;margin-right:auto}
.nav-link{padding:6px 0;border-radius:0;font-size:14.5px;letter-spacing:-.005em;color:rgba(58,36,26,.72);position:relative}
.nav-link:hover{background:none;color:var(--ink)}
.nav-link::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:1.5px;
  background:var(--purple);transform:scaleX(0);transform-origin:left;transition:transform .22s ease;
}
.nav-link:hover::after{transform:scaleX(1)}
.btn-download{height:38px;padding:0 18px;border-radius:9px;font-size:14.5px;font-weight:500;
  background:var(--ink);color:var(--cream)}
.btn-download:hover{background:#2A1810}
.logo-word{letter-spacing:-.03em}

/* ---- hero: anchored to the left, with room to breathe ---- */
.hero{padding:calc(68px + 10px) 0 0}
.hero-card{border-radius:22px;justify-content:flex-start;align-items:flex-end;
  height:calc(100svh - 108px);max-height:820px}
.hero-card::after{background:
  linear-gradient(90deg,rgba(255,253,248,.94) 0%,rgba(255,253,248,.78) 34%,rgba(255,253,248,.12) 66%,rgba(255,253,248,0) 100%),
  linear-gradient(0deg,rgba(255,253,248,.5) 0%,rgba(255,253,248,0) 34%)}
.hero-content{text-align:left;padding:0 0 64px 60px;max-width:none;width:min(760px,88%)}
.hero-eyebrow{display:flex;align-items:center;gap:12px;font-size:13px;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;color:rgba(58,36,26,.62);margin:0 0 22px}
.eb-rule{display:block;width:34px;height:1.5px;background:var(--purple);flex:none}
.hero-title{font-size:clamp(38px,5.1vw,80px);line-height:1.02;letter-spacing:-.035em;margin:0;max-width:none}
.hero-title em{font-style:normal;color:var(--purple)}
.hero-sub{margin:22px 0 0;max-width:44ch;font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;color:rgba(58,36,26,.72)}
.hero-cta{margin-top:32px;justify-content:flex-start}
.btn-pill-light{height:52px;padding:0 26px;border-radius:11px;font-size:16px}
.btn-pill-light:hover{transform:none;background:#2A1810}

/* ---- section headings: left, on a numbered rule ---- */
.feature{counter-increment:sec}
main{counter-reset:sec}
.sec-head{
  flex-direction:row;align-items:flex-end;justify-content:space-between;gap:32px;
  text-align:left;padding:70px 0 26px;border-top:1px solid var(--line);position:relative;
}
.sec-head::before{
  content:"0" counter(sec);position:absolute;top:22px;left:0;
  font-size:12px;font-weight:500;letter-spacing:.14em;color:var(--purple);
}
.sec-title{font-size:clamp(34px,4.9vw,76px);line-height:1.04;letter-spacing:-.035em;margin:26px 0 0;max-width:15ch}
.sec-title .ghost-inline{width:.62em;height:.62em}
.see-more{border-radius:10px;flex:none}
.see-more:hover{transform:none}

/* ---- rectangles, not lozenges ---- */
.rc-chip{border-radius:8px}
.rc-btn{border-radius:12px}
.cookie{border-radius:14px}
.cookie-btns button{border-radius:9px}
.cat-label{border-radius:8px}
.cat-arrow{border-radius:9px}

@media(max-width:900px){
  .nav-inner{padding:0 18px}
  .nav-links{display:none}
  .hero-content{padding:0 0 44px 24px;width:92%}
  .sec-head{flex-direction:column;align-items:flex-start;gap:18px}
  .sec-title{max-width:none}
}

/* ---- refinements after looking at it ---- */
.hero-title{font-size:clamp(36px,4.6vw,68px)}
.hero-title em{color:var(--purple)}
.sec-head::before{letter-spacing:.06em;top:26px}
.sec-title{margin:18px 0 0}
.card{border-radius:18px}

/* On mobile .nav-links is hidden, and it was the thing pushing the right-hand
   controls over — without it the Download button collides with the wordmark. */
.nav-right{margin-left:auto}
@media(max-width:900px){
  .hero-eyebrow{font-size:11px;letter-spacing:.08em}
  .hero-content{padding-bottom:36px}
}

/* ---- cards: asymmetric grid, not a carousel of identical portraits ----
   The uniform tall cards sliding sideways under a pill label with arrows was
   the last big piece of borrowed silhouette. Same cards, laid out in a
   two-up rhythm that alternates which side is wide, and a full-width one to
   close each set. */
.carousel{
  display:grid;grid-template-columns:repeat(12,1fr);gap:18px;
  overflow:visible;cursor:default;padding-bottom:0;
}
.carousel.dragging{cursor:default}
.card{
  flex:none;aspect-ratio:auto;min-height:clamp(360px,32vw,460px);
  scroll-snap-align:none;box-shadow:none;
}
.card:nth-child(4n+1){grid-column:span 7}
.card:nth-child(4n+2){grid-column:span 5}
.card:nth-child(4n+3){grid-column:span 5}
.card:nth-child(4n)  {grid-column:span 7}
/* an odd card left over goes full width and lies down instead of orphaning a gap */
.card:last-child:nth-child(odd){grid-column:span 12;min-height:clamp(280px,22vw,340px)}
.card-cap{max-width:16ch}
.card:nth-child(4n+2) .card-cap,
.card:nth-child(4n+3) .card-cap{max-width:12ch}

/* light cards get a hairline so they read as paper, not as a colour block */
.card.grey,.card.cream,.card.pale,.card.pink,.card.lavender{
  box-shadow:inset 0 0 0 1px rgba(58,36,26,.08)}

/* the category row loses its pill and its scroll arrows — there is nothing
   left to scroll */
.cat-dots{display:none}
.cat-label{
  background:none;box-shadow:none;padding:0;border-radius:0;
  font-size:12px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
  color:var(--muted);gap:9px}
.cat-label svg{width:15px;height:15px;color:var(--purple)}
.cat-row{margin:8px 0 20px}

@media(max-width:900px){
  .carousel{grid-template-columns:repeat(6,1fr);gap:14px}
  .card,
  .card:nth-child(4n+1),.card:nth-child(4n+2),
  .card:nth-child(4n+3),.card:nth-child(4n),
  .card:last-child:nth-child(odd){grid-column:span 6;min-height:clamp(320px,80vw,420px)}
  .card-cap{max-width:14ch}
}

/* The full-width closing card is short and wide, so the absolutely-positioned
   artwork ran straight into the caption. Give it two columns instead: words on
   the left, the UI beside them. */
.card:last-child:nth-child(odd){
  display:grid;grid-template-columns:1.05fr 1fr;align-items:center;gap:0;
  min-height:clamp(300px,24vw,360px);
}
.card:last-child:nth-child(odd) .card-body{padding:clamp(32px,3vw,52px);justify-content:center}
.card:last-child:nth-child(odd) .card-cap{max-width:15ch}
.card:last-child:nth-child(odd) .card-art{
  position:static;justify-content:center;
  padding:clamp(32px,3vw,52px) clamp(32px,3vw,52px) clamp(32px,3vw,52px) 0;
}
@media(max-width:900px){
  .card:last-child:nth-child(odd){display:block}
  .card:last-child:nth-child(odd) .card-art{position:absolute;padding:0 32px 32px}
}

/* =========================================================================
   TYPE — SF Pro medium

   The five woff2 files this site loaded were Phantom's own typeface with the
   filenames changed. Beyond the look, shipping a competitor's font binaries
   is the kind of thing that draws a letter. SF Pro is the system font: no
   file to ship, nothing borrowed, and it falls back cleanly off Apple.
   ========================================================================= */
:root{
  --sf:-apple-system,'SF Pro Text','SF Pro Display',BlinkMacSystemFont,
       system-ui,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}
body,button,input,textarea,select{font-family:var(--sf)!important}
body{font-weight:500;letter-spacing:-.006em}

/* SF carries less width than the old grotesk, so the display sizes need
   tighter tracking and a touch more weight to hold the same presence */
.hero-title,.sec-title,.cta-title,.cta-card-title,.news-copy,.card-cap,.doc h1{
  font-weight:600;letter-spacing:-.035em}
.hero-sub,.doc p,.doc li,.legal p{font-weight:450}
.logo-word{font-weight:700;letter-spacing:-.03em}
.nav-link,.btn-download,.see-more,.footer-col a{font-weight:500}
.footer-col h4,.doc h2{font-weight:600;letter-spacing:-.02em}

/* build 1784577056 */

/* ---- motion ---- */
.rise{animation:rise .72s cubic-bezier(.22,1,.36,1) both;animation-delay:var(--d,0ms)}
@keyframes rise{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
.hero-card video{will-change:transform}
.hero-content{will-change:transform,opacity}
.carousel{perspective:1200px}
.card{transition:transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s cubic-bezier(.22,1,.36,1);
  transform-style:preserve-3d;will-change:transform}
.card:hover{box-shadow:0 26px 50px -22px rgba(58,36,26,.42)}
.card-art{transition:transform .5s cubic-bezier(.22,1,.36,1)}
.see-more,.btn-download,.btn-pill-light{transition:transform .3s cubic-bezier(.22,1,.36,1),background .2s}
.see-more:hover,.btn-download:hover,.btn-pill-light:hover{transform:translateY(-2px)}
.nav-link::after{transition:transform .28s cubic-bezier(.22,1,.36,1)}
@media(prefers-reduced-motion:reduce){
  .rise{animation:none}
  .card,.card-art,.hero-card video,.hero-content{transition:none!important;transform:none!important}
}

/* ---- document pages (security, developers, support, how-it-works, privacy) ---- */
.doc{max-width:760px;margin:0 auto;padding:120px 24px 90px}
.doc .eyebrow{display:flex;align-items:center;gap:12px;font-size:13px;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;color:rgba(58,36,26,.62);margin-bottom:22px}
.doc .eyebrow span{display:block;width:34px;height:1.5px;background:var(--purple)}
.doc h1{font-size:clamp(34px,5vw,52px);line-height:1.05;letter-spacing:-.035em;margin:0 0 14px;font-weight:600}
.doc .lead{font-size:19px;line-height:1.6;color:var(--ink);margin:0 0 30px}
.doc h2{font-size:22px;letter-spacing:-.02em;margin:44px 0 12px;font-weight:600}
.doc p,.doc li{font-size:16px;line-height:1.65;color:#4A3529;margin:0 0 14px}
.doc ul,.doc ol{margin:0 0 14px;padding-left:20px}
.doc ul{list-style:disc}
.doc li{margin-bottom:8px}
.doc strong{font-weight:600;color:var(--ink)}
.doc a{color:var(--purple);font-weight:500}
.doc code{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.9em;
  background:rgba(58,36,26,.06);padding:1px 6px;border-radius:5px}
.doc .box{background:#FFF3EC;border:1px solid var(--line);border-radius:14px;padding:18px 20px;margin:0 0 20px}
.doc .box p:last-child{margin-bottom:0}
.doc table{width:100%;border-collapse:collapse;margin:0 0 20px;font-size:14.5px}
.doc th{text-align:left;font-weight:600;padding:10px 12px;border-bottom:1px solid var(--line);color:var(--ink)}
.doc td{padding:10px 12px;border-bottom:1px solid var(--line);color:#4A3529;vertical-align:top}
.doc td:first-child{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:13px}
.doc .overflow{overflow-x:auto}
.doc .back{display:inline-flex;align-items:center;gap:8px;margin-top:50px;font-size:15px;font-weight:600;color:var(--purple)}
@media(max-width:640px){.doc{padding:96px 18px 60px}.doc td:first-child{white-space:normal}}

/* =========================================================================
   CARD ANIMATION LAYER
   The feature cards were static and read as flat. This brings them alive the
   way the reference wallet does: twinkling sparkles, panels that breathe, the
   undo graphic drawing itself on a loop, and a soft drifting glow for depth.
   All of it pauses off-screen (.card-art without .live) and stops entirely
   for reduced-motion.
   ========================================================================= */
.card{overflow:hidden}
.art-glow{position:absolute;z-index:0;width:56%;height:52%;border-radius:50%;filter:blur(52px);
  opacity:0;pointer-events:none;background:radial-gradient(circle,rgba(255,122,69,.32),transparent 68%)}
.card.dark .art-glow,.card.deep .art-glow{background:radial-gradient(circle,rgba(255,138,52,.3),transparent 68%)}
.card.blue .art-glow{background:radial-gradient(circle,rgba(120,170,255,.45),transparent 66%)}
.card-art.live .art-glow{opacity:1;animation:art-glow 10s ease-in-out infinite}
@keyframes art-glow{
  0%  {transform:translate(-14%,10%) scale(1)}
  50% {transform:translate(18%,-12%) scale(1.18)}
  100%{transform:translate(-14%,10%) scale(1)}
}

.sk{position:absolute;z-index:2;pointer-events:none;color:var(--cream);opacity:0}
.card.grey .sk,.card.cream .sk,.card.pale .sk,.card.pink .sk,.card.purple .sk{color:#FF7A45}
.sk svg{display:block;width:100%;height:100%}
.sk{filter:drop-shadow(0 0 6px currentColor)}
.card-art.live .sk{animation:sk-tw 2.8s ease-in-out infinite}
@keyframes sk-tw{
  0%,100%{opacity:0;transform:scale(.3) rotate(0deg)}
  45%    {opacity:1;transform:scale(1.15) rotate(80deg)}
  55%    {opacity:1;transform:scale(1.15) rotate(100deg)}
}

/* panels breathe */
.card-art.live .ui{animation:art-float 6s ease-in-out infinite}
.card-art.live .rc-btn{animation:art-float 6s ease-in-out .3s infinite}
.card-art.live .rc-list .it{animation:art-float 6.6s ease-in-out infinite}
.card-art.live .rc-list .it:nth-child(2){animation-delay:.5s}
.card-art.live .rc-list .it:nth-child(3){animation-delay:1s}
@keyframes art-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

/* undo graphic draws itself on a loop, then a coin springs home */
.rc-undo{position:relative}
.rc-undo svg{max-height:132px}
.card-art.live .rc-undo .trail{animation:undo-march 1.9s linear infinite}
@keyframes undo-march{to{stroke-dashoffset:-24}}
.rc-undo .hook{stroke-dasharray:64;stroke-dashoffset:64}
.card-art.live .rc-undo .hook{animation:undo-draw 3.6s ease-in-out infinite}
@keyframes undo-draw{0%,55%{stroke-dashoffset:64}72%,100%{stroke-dashoffset:0}}
.rc-undo .head{opacity:0}
.card-art.live .rc-undo .head{animation:undo-head 3.6s ease-in-out infinite}
@keyframes undo-head{0%,66%{opacity:0}78%,100%{opacity:1}}
/* the coin travels out along the trail, pauses, then snaps back — reversible */
.card-art.live .rc-undo .coin{animation:undo-coin 3.6s cubic-bezier(.6,0,.35,1) infinite}
@keyframes undo-coin{
  0%   {transform:translate(0,0)}
  40%  {transform:translate(134px,-42px)}
  55%  {transform:translate(134px,-42px)}
  85%  {transform:translate(0,0)}
  100% {transform:translate(0,0)}
}

/* status chips get a gentle life */
.card-art.live .rc-chip.good,.card-art.live .rc-chip.done{animation:chip-pop 3.6s ease-in-out infinite}
@keyframes chip-pop{0%,60%{transform:scale(.96);opacity:.6}72%,100%{transform:scale(1);opacity:1}}

/* progress ring sweeps */
.card-art.live .rc-ring .prog{animation:ring-fill 4s ease-in-out infinite}
@keyframes ring-fill{0%{stroke-dashoffset:201}55%,100%{stroke-dashoffset:58}}

@media(prefers-reduced-motion:reduce){
  .card-art *{animation:none!important}
  .art-glow{opacity:.5}
}
