/* =========================================================================
   SPUN BIO — all-in-one link-in-bio
   Colorful warm-editorial studio look (matches SPUN social landing).
   Linktree-inspired. Real SPUN logo (mono black/white via filter).
   ========================================================================= */

:root {
  --base:        #FFF9F8;
  --base-2:      #FFF0EE;
  --paper:       #FFFFFF;
  --ink:         #6B403C;
  --ink-60:      rgba(107, 64, 60, 0.62);
  --ink-40:      rgba(107, 64, 60, 0.40);
  --line:        rgba(107, 64, 60, 0.14);

  --cobalt: #FF857A;
  --lime:   #ADEBB3;
  --coral:  #FF857A;
  --sky:    #EBAEE6;
  --butter: #FFD8B0;
  --plum:   #EBAEE6;

  --radius:   18px;
  --radius-s: 12px;
  --radius-pill: 100px;
  --shadow:   6px 6px 0 var(--ink);
  --shadow-s: 4px 4px 0 var(--ink);
  --maxw: 1180px;

  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--base);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
  background-image: radial-gradient(rgba(107,64,60,0.07) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bio-wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; }

/* SPUN logo treated mono (black on light, white where inverted) */
.bio-logo { display: inline-flex; align-items: center; }
.bio-logo-img { height: 28px; width: auto; filter: brightness(0); }
.bio-logo-img.white { filter: brightness(0) invert(1); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 14px; border: 1.5px solid var(--ink); border-radius: var(--radius-pill);
  background: var(--paper); box-shadow: var(--shadow-s);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 13px 22px; border-radius: var(--radius-pill); border: 2px solid var(--ink);
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn i { font-size: 14px; }
.btn--primary { background: var(--cobalt); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); box-shadow: var(--shadow); }
.btn--lime:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.btn--ghost { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-s); }
.btn--ghost:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); background: var(--lime); }
.btn--sm { padding: 10px 16px; font-size: 14px; }

/* =========================================================================
   NAV
   ========================================================================= */
.bio-nav {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1.5px solid var(--line);
  background: rgba(255,248,234,0.82); backdrop-filter: blur(10px);
}
.bio-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.bio-nav-links { display: flex; align-items: center; gap: 30px; }
.bio-nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-60); transition: color .15s; }
.bio-nav-links a:hover { color: var(--ink); }
.bio-nav-cta { display: flex; align-items: center; gap: 12px; }
.bio-burger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }

/* =========================================================================
   HERO
   ========================================================================= */
.bio-hero { position: relative; padding: 64px 0 70px; }
.bio-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.bio-hero h1 { font-size: clamp(44px, 6.2vw, 82px); margin: 22px 0 20px; }
.bio-hero h1 .hi { position: relative; white-space: nowrap; }
.bio-hero h1 .hi::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: 6px; height: 36%; background: var(--lime); z-index: -1; transform: rotate(-1.2deg); }
.bio-hero .lead { font-size: 20px; color: var(--ink-60); max-width: 470px; margin-bottom: 28px; }

/* claim input */
.claim {
  display: flex; align-items: center; gap: 6px; background: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--radius-pill); padding: 6px 6px 6px 18px;
  max-width: 460px; box-shadow: var(--shadow-s); transition: box-shadow .15s, transform .15s;
}
.claim:focus-within { box-shadow: var(--shadow); transform: translate(-1px,-1px); }
.claim .pre { color: var(--ink-60); font-weight: 700; font-size: 15px; white-space: nowrap; font-family: var(--font-display); }
.claim input { flex: 1; background: none; border: none; outline: none; color: var(--ink); font-family: var(--font-body); font-size: 15px; font-weight: 600; min-width: 0; }
.claim input::placeholder { color: var(--ink-40); }
.bio-hero-sub { margin-top: 18px; display: flex; align-items: center; gap: 12px; color: var(--ink-60); font-size: 14px; flex-wrap: wrap; }
.bio-stars { color: var(--coral); letter-spacing: 2px; }

/* phone mockup — colorful bio page */
.bio-phone-stage { position: relative; display: flex; justify-content: center; }
.bio-phone {
  position: relative; z-index: 2; width: 300px; padding: 12px;
  background: var(--ink); border: 2px solid var(--ink); border-radius: 42px;
  box-shadow: var(--shadow); transform: rotate(-1.5deg);
}
.bio-phone .notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 100px; height: 24px; background: #000; border-radius: 100px; z-index: 4; }
.bio-screen { border-radius: 32px; background: var(--base); border: 0; padding: 38px 16px 20px; overflow: hidden; }
.bio-screen .av {
  width: 72px; height: 72px; border-radius: 50%; margin: 6px auto 12px;
  background: var(--cobalt); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 34px; border: 2px solid var(--ink);
  box-shadow: var(--shadow-s);
}
.bio-screen .name { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.bio-screen .handle { text-align: center; color: var(--ink-60); font-size: 13px; }
.bio-screen .blurb { text-align: center; color: var(--ink-60); font-size: 12px; margin: 6px 12px 16px; }
.bio-link {
  display: flex; align-items: center; gap: 11px; width: 100%;
  border: 2px solid var(--ink); border-radius: 14px; padding: 12px 14px; margin-bottom: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink); transition: transform .14s, box-shadow .14s; cursor: pointer;
}
.bio-link:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.bio-link .li-ic { width: 26px; height: 26px; border-radius: 7px; border: 1.5px solid var(--ink); display: grid; place-items: center; font-size: 12px; background: rgba(255,255,255,.5); flex-shrink: 0; }
.bio-link .arrow { margin-left: auto; font-size: 11px; opacity: .6; }
.bio-link.l1 { background: var(--lime); }
.bio-link.l2 { background: var(--sky); }
.bio-link.l3 { background: var(--coral); color: #fff; }
.bio-link.l3 .li-ic { color: var(--ink); }
.bio-link.l4 { background: var(--butter); }
.bio-socials { display: flex; justify-content: center; gap: 14px; margin-top: 14px; font-size: 17px; color: var(--ink); }
.bio-socials i { cursor: pointer; transition: transform .15s; }
.bio-socials i:hover { transform: translateY(-2px); }

/* floating chips */
.float {
  position: absolute; z-index: 3; background: var(--paper); border: 2px solid var(--ink);
  border-radius: 12px; padding: 9px 13px; font-family: var(--font-display); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-s);
}
.float.f1 { top: 30px; left: -8px; transform: rotate(-4deg); animation: floaty 5s ease-in-out infinite; }
.float.f2 { top: 188px; right: -16px; transform: rotate(4deg); animation: floaty 6s ease-in-out infinite reverse; }
.float.f3 { bottom: 56px; left: -20px; transform: rotate(3deg); animation: floaty 5.5s ease-in-out infinite .4s; }
.float .d { width: 9px; height: 9px; border-radius: 50%; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--r,0)); } 50% { transform: translateY(-10px) rotate(var(--r,0)); } }
.float.f1 { --r: -4deg; } .float.f2 { --r: 4deg; } .float.f3 { --r: 3deg; }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.bio-strip { border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); background: var(--ink); color: var(--base); overflow: hidden; }
.bio-marquee { display: flex; white-space: nowrap; animation: scroll 28s linear infinite; }
.bio-marquee:hover { animation-play-state: paused; }
.bio-marquee .m { display: inline-flex; align-items: center; gap: 12px; padding: 15px 28px; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.bio-marquee .m i { font-size: 16px; }
.bio-marquee .star { color: var(--coral); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.bio-section { padding: 96px 0; position: relative; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 56px); margin: 18px 0 14px; }
.sec-head p { font-size: 19px; color: var(--ink-60); }

/* features bento */
.bio-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-s); transition: transform .16s, box-shadow .16s;
}
.feat:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.feat .ic { width: 48px; height: 48px; border-radius: 12px; border: 2px solid var(--ink); display: grid; place-items: center; font-size: 19px; margin-bottom: 18px; }
.feat h3 { font-size: 19px; margin-bottom: 8px; }
.feat p { font-size: 14.5px; color: var(--ink-60); }
.feat.wide { grid-column: span 2; display: flex; flex-direction: column; justify-content: space-between; background: var(--cobalt); border-color: var(--ink); color: #fff; }
.feat.wide h3 { font-size: 24px; }
.feat.wide p { color: rgba(255,255,255,.8); font-size: 16px; }
.feat.wide .ic { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.12); }
.feat.c1 .ic { background: var(--lime); } .feat.c2 .ic { background: var(--sky); }
.feat.c3 .ic { background: var(--coral); color:#fff; } .feat.c4 .ic { background: var(--butter); }
.feat.c5 .ic { background: var(--plum); } .feat.c6 .ic { background: var(--lime); }
.feat.invert { background: var(--ink); color: var(--base); border-color: var(--ink); }
.feat.invert p { color: rgba(255,248,234,.62); }
.feat.invert .ic { background: var(--sky); color: var(--ink); border-color: var(--base); }
.feat.invert .mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 52px; margin-top: 16px; }
.feat.invert .mini-bars span { flex: 1; background: var(--lime); border: 1.5px solid var(--base); border-bottom: none; border-radius: 4px 4px 0 0; }

/* how it works pipeline */
.bio-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { border: 2px solid var(--ink); padding: 30px 26px; }
.step:nth-child(1){ background: var(--sky); border-radius: var(--radius) 0 0 var(--radius); }
.step:nth-child(2){ background: var(--lime); border-left: none; }
.step:nth-child(3){ background: var(--coral); color: #fff; border-left: none; border-radius: 0 var(--radius) var(--radius) 0; }
.step .n { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--ink); background: var(--paper); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; margin-bottom: 18px; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 15px; opacity: .9; }

/* tools band */
.bio-tools { background: var(--ink); color: var(--base); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.bio-tools .eyebrow { background: transparent; color: var(--base); border-color: rgba(255,248,234,.4); box-shadow: none; }
.tools-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; }
.tools-inner h2 { color: var(--base); }
.tools-inner .lead2 { color: rgba(255,248,234,.62); font-size: 18px; max-width: 420px; }
.tools-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tools-cloud span { border: 1.5px solid rgba(255,248,234,.28); border-radius: var(--radius-pill); padding: 9px 16px; font-size: 13.5px; font-weight: 600; color: rgba(255,248,234,.8); transition: all .15s; }
.tools-cloud span:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.tools-cloud .big { font-family: var(--font-display); font-size: 20px; color: var(--base); border: none; padding: 0 6px; }
.tools-cloud .big:hover { background: none; color: var(--lime); }

/* stat row */
.bio-stat-card { background: var(--butter); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.stat .k { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px,5vw,60px); line-height: 1; letter-spacing: -.03em; }
.stat .l { color: var(--ink-60); font-size: 14px; margin-top: 8px; font-weight: 600; }

/* =========================================================================
   PRICING
   ========================================================================= */
.bio-pricing { background: var(--base-2); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
.bio-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-s); }
.plan.feat-plan { background: var(--ink); color: var(--base); box-shadow: var(--shadow); position: relative; }
.plan .badge { position: absolute; top: -13px; left: 28px; background: var(--lime); border: 2px solid var(--ink); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: var(--radius-pill); }
.plan h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-60); }
.plan.feat-plan h3 { color: rgba(255,248,234,.6); }
.plan .price { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; margin: 14px 0 4px; letter-spacing: -.03em; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--ink-60); }
.plan.feat-plan .price small { color: rgba(255,248,234,.6); }
.plan .pdesc { font-size: 14px; color: var(--ink-60); margin-bottom: 22px; }
.plan.feat-plan .pdesc { color: rgba(255,248,234,.6); }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.plan li i { margin-top: 3px; font-size: 12px; color: var(--cobalt); }
.plan.feat-plan li i { color: var(--lime); }
.plan .btn { margin-top: auto; width: 100%; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.bio-final { padding: 30px 0 96px; }
.bio-final-box {
  background: var(--cobalt); color: #fff; border: 2px solid var(--ink); border-radius: 28px;
  box-shadow: var(--shadow); padding: 64px 40px; text-align: center; position: relative; overflow: hidden;
}
.bio-final-box::before { content:""; position: absolute; width: 170px; height: 170px; border-radius: 50%; background: var(--coral); border: 2px solid var(--ink); top: -60px; left: -40px; }
.bio-final-box::after { content:""; position: absolute; width: 130px; height: 130px; border-radius: 50%; background: var(--lime); border: 2px solid var(--ink); bottom: -50px; right: -24px; }
.bio-final-box .inner { position: relative; z-index: 2; }
.bio-final-box h2 { font-size: clamp(36px, 5.4vw, 64px); margin-bottom: 14px; }
.bio-final-box p { color: rgba(255,255,255,.85); font-size: 19px; max-width: 480px; margin: 0 auto 28px; }
.bio-final-box .claim { margin-inline: auto; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.bio-footer { border-top: 2px solid var(--ink); background: var(--base-2); padding: 56px 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-top .brand p { color: var(--ink-60); font-size: 15px; max-width: 280px; margin: 16px 0 18px; }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a { width: 38px; height: 38px; border: 2px solid var(--ink); border-radius: 10px; display: grid; place-items: center; font-size: 16px; background: var(--paper); transition: transform .15s, background .15s; }
.foot-socials a:hover { transform: translateY(-3px); background: var(--lime); }
.bio-footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.bio-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bio-footer ul a { font-size: 15px; color: var(--ink-60); }
.bio-footer ul a:hover { color: var(--ink); }
.foot-bottom { border-top: 1.5px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; color: var(--ink-60); font-size: 14px; flex-wrap: wrap; gap: 12px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .bio-marquee, .float { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1040px) {
  .bio-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat.wide { grid-column: span 2; }
}
@media (max-width: 880px) {
  .bio-nav-links { display: none; }
  .bio-nav-cta .btn--ghost { display: none; }
  .bio-burger { display: block; }
  .bio-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .bio-hero { text-align: center; }
  .claim, .bio-hero .lead { margin-inline: auto; }
  .bio-hero-sub { justify-content: center; }
  .bio-steps { grid-template-columns: 1fr; }
  .step { border-radius: 0 !important; border-left: 2px solid var(--ink) !important; border-top: none; }
  .step:nth-child(1){ border-radius: var(--radius) var(--radius) 0 0 !important; }
  .step:nth-child(3){ border-radius: 0 0 var(--radius) var(--radius) !important; }
  .tools-inner { grid-template-columns: 1fr; gap: 32px; }
  .bio-plans { grid-template-columns: 1fr; }
  .plan.feat-plan { order: -1; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .bio-section { padding: 72px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .bio-wrap { padding-inline: 18px; }
  .bio-feat-grid { grid-template-columns: 1fr; }
  .feat.wide { grid-column: span 1; }
  .bio-stat-card { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .bio-final-box { padding: 48px 22px; }
  .bio-hero h1 .hi { white-space: normal; }
  .claim .pre { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════
   NAV + HERO — LOTUS GARDEN CORAL THEME
   ═══════════════════════════════════════════════════════════════ */
.bio-nav {
  background: #FF857A;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 2px solid rgba(107,64,60,.2);
}
.bio-nav .bio-logo-img { filter: brightness(0) invert(1); }
.bio-nav-links a { color: rgba(255,255,255,.75); }
.bio-nav-links a:hover { color: #fff; }
.bio-nav .btn--ghost {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
  color: #fff;
  box-shadow: none;
}
.bio-nav .btn--ghost:hover { background: rgba(255,255,255,.25); }
.bio-nav .btn--primary {
  background: #ADEBB3;
  color: #6B403C;
  border-color: rgba(107,64,60,.2);
  box-shadow: 3px 3px 0 rgba(107,64,60,.2);
}
.bio-nav .btn--primary:hover { background: #c4f2c9; box-shadow: 5px 5px 0 rgba(107,64,60,.2); }
.bio-burger { color: #fff; }

.bio-hero {
  background-color: #FF857A;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
.bio-hero h1 { color: #fff; }
.bio-hero h1 .stroke { color: #ADEBB3; }
.bio-hero h1 .hi::after { background: #ADEBB3; }
.bio-hero .eyebrow {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  box-shadow: none;
}
.bio-hero .eyebrow .dot { background: #ADEBB3; }
.bio-hero .lead { color: rgba(255,255,255,.82); }
.bio-hero-sub { color: rgba(255,255,255,.72); }
.bio-stars { color: #ADEBB3; }
.bio-hero .claim {
  background: rgba(255,255,255,.96);
  border-color: rgba(107,64,60,.18);
  box-shadow: 4px 4px 0 rgba(107,64,60,.18);
}
.bio-hero .claim:focus-within { box-shadow: 6px 6px 0 rgba(107,64,60,.22); }
.bio-hero .claim .pre { color: rgba(107,64,60,.5); }
.bio-hero .claim input { color: #6B403C; }
.bio-hero .claim .btn--primary {
  background: #ADEBB3;
  color: #6B403C;
  border-color: rgba(107,64,60,.15);
  box-shadow: 2px 2px 0 rgba(107,64,60,.15);
}
.bio-hero .claim .btn--primary:hover { background: #c4f2c9; }
.float {
  background: rgba(255,255,255,.97);
  border-color: rgba(107,64,60,.15);
  box-shadow: 3px 3px 0 rgba(107,64,60,.15);
  color: #6B403C;
}

/* =========================================================================
   66biolinks integration
   ========================================================================= */
body.index {
  background: var(--base);
  color: var(--ink);
  overflow-x: hidden;
}

body.index > .container.pt-4 {
  max-width: none;
  padding: 0 !important;
  background: #FF857A !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

body.index #navbar.navbar-index,
body.index #navbar.navbar-main {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 70px;
  padding: 0;
  background: #FF857A !important;
  border-bottom: 2px solid rgba(107,64,60,.2) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
}

body.index #navbar.navbar-index > .container,
body.index #navbar.navbar-main > .container {
  width: 100%;
  max-width: var(--maxw);
  min-height: 70px;
  padding-inline: 24px;
}

body.index #navbar .navbar-brand {
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 800;
}

body.index #navbar .navbar-logo,
body.index #navbar [data-logo] img {
  max-height: 30px;
  width: auto;
  filter: brightness(0) invert(1) !important;
}

body.index #navbar .nav-link {
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: 15px;
}

body.index #navbar .nav-link:hover,
body.index #navbar .nav-link:focus {
  color: #fff;
}

body.index #navbar .btn-outline-light,
body.index #navbar .btn-outline-primary-300,
body.index #navbar .navbar-custom-toggler {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35) !important;
  color: #fff !important;
  box-shadow: none;
}

body.index #navbar .btn-outline-primary-300 {
  background: #ADEBB3;
  border-color: rgba(107,64,60,.2) !important;
  color: var(--ink) !important;
  box-shadow: 3px 3px 0 rgba(107,64,60,.2);
}

body.index #navbar .dropdown-menu {
  border: 2px solid var(--ink);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-s);
}

.spunbio-home {
  background: var(--base);
  color: var(--ink);
  overflow: hidden;
  max-width: 100vw;
}

.spunbio-home .bio-hero {
  margin-top: -1px;
}

.spunbio-home .glow {
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(173,235,179,.45), rgba(173,235,179,0) 64%);
  pointer-events: none;
  transition: transform .2s ease;
}

.claim select.claim-domain {
  min-width: 118px;
  max-width: 176px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-60);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  appearance: none;
}

.claim .pre,
.claim select.claim-domain {
  border-right: 1px solid var(--line);
  padding-right: 10px;
  margin-right: 4px;
}

.claim button[disabled] {
  opacity: .7;
  cursor: not-allowed;
}

.bio-login-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.spunbio-home .bio-phone a:not([href]) {
  pointer-events: none;
}

.spunbio-plans .row {
  row-gap: 16px;
}

.spunbio-plans .pricing-plan {
  height: 100%;
  background: var(--paper);
  border: 2px solid var(--ink) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-s);
  padding: 30px;
}

.spunbio-plans .pricing-header,
.spunbio-plans .pricing-body {
  padding: 0;
}

.spunbio-plans .pricing-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.spunbio-plans .pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 54px);
  line-height: 1;
  margin: 14px 0 10px;
  letter-spacing: -.03em;
}

.spunbio-plans .pricing-details,
.spunbio-plans .pricing-body {
  color: var(--ink-60);
}

.spunbio-plans .pricing-body .btn-primary {
  background: var(--lime) !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: var(--shadow-s);
  font-family: var(--font-display);
  font-weight: 800;
}

.spunbio-plans .btn-group-custom .btn {
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.spunbio-plans .btn-group-custom .btn.active {
  background: var(--lime);
}

body.index .app-footer {
  border-top: 2px solid var(--ink);
  background: var(--base-2);
  padding: 32px 0;
  color: var(--ink);
}

body.index .footer-heading,
body.index .app-footer a {
  color: var(--ink);
}

body.index .footer-social-wrapper {
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
}

@media (max-width: 880px) {
  body.index #navbar.navbar-index > .container {
    padding-inline: 18px;
  }

  body.index #navbar.navbar-main > .container {
    padding-inline: 18px;
  }

  body.index #navbar .navbar-collapse {
    background: #FF857A;
    border-top: 1px solid rgba(255,255,255,.24);
    padding: 12px 0 18px;
  }

  .claim {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 10px;
  }

  .claim .pre,
  .claim select.claim-domain {
    width: 100%;
    max-width: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 8px;
    margin: 0 0 4px;
  }

  .claim .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .spunbio-home .bio-hero {
    padding-top: 54px;
  }

  .spunbio-home .bio-hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .spunbio-home .bio-hero h1 {
    max-width: 310px;
    margin-inline: auto;
    font-size: clamp(37px, 10.4vw, 42px);
    overflow-wrap: break-word;
  }

  .spunbio-home .bio-hero .lead,
  .spunbio-home .bio-hero-sub {
    max-width: 286px;
  }

  .spunbio-home .bio-hero .lead {
    font-size: 18px;
  }

  .spunbio-home .bio-phone-stage {
    max-width: 100%;
    overflow: visible;
  }

  .spunbio-home .bio-phone {
    width: min(250px, 72vw);
    transform: rotate(-1deg);
    margin-inline: auto;
  }

  .spunbio-home .float {
    display: none;
  }

  .spunbio-home .sec-head,
  .spunbio-home .sec-head.center {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .spunbio-home .bio-section .sec-head:not(.center) {
    max-width: min(300px, calc(100vw - 36px));
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .spunbio-home .sec-head h2 {
    font-size: clamp(31px, 8.6vw, 36px);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .spunbio-home .sec-head p {
    font-size: 17px;
  }
}
