/* ============================================================
   dare:daily — shared styles
   Used by index.html, about.html, privacy.html, terms.html and
   support.html. Keep this file, logo_white.png and the HTML files
   in the same directory. The logo is loaded by .logo below.
   ============================================================ */

:root{
  --bg:#04140E;
  --bg-2:#0A2317;
  --panel:#0C2A1C;
  --green:#1ACD78;
  --green-deep:#0E5A38;
  --paper:#F4F6F5;
  --muted:#7C9488;
  --muted-soft:#546A5F;
  --hair:rgba(244,246,245,0.10);
  --display:'Inter Tight', sans-serif;
  --body:'Inter', sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--paper);
  font-family:var(--body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select{ font-family:inherit; }
svg,img{ display:block; }
a{ color:inherit; text-decoration:none; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--green); outline-offset:3px; border-radius:6px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition-duration:.001s !important; scroll-behavior:auto !important; }
}

/* ---------- atmosphere ---------- */
.glow{
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(760px 560px at 74% 44%, rgba(26,205,120,0.16), transparent 68%),
    radial-gradient(900px 700px at 6% 92%, rgba(14,90,56,0.30), transparent 72%),
    linear-gradient(175deg, #05170F 0%, #04140E 55%, #061B12 100%);
}
.glow.quiet{
  background:
    radial-gradient(700px 520px at 88% 4%, rgba(26,205,120,0.10), transparent 70%),
    linear-gradient(175deg, #05170F 0%, #04140E 60%, #061B12 100%);
}

/* ---------- shell ---------- */
.page{
  position:relative; z-index:1; min-height:100vh;
  display:flex; flex-direction:column; padding:28px 36px 24px;
}
.top{ display:flex; align-items:center; justify-content:space-between; gap:20px; }

.logo{
  display:block; width:150px; height:26px;
  background-image:url("logo_white.png");
  background-size:contain; background-repeat:no-repeat; background-position:left center;
  flex:0 0 auto;
}
.top-link{
  font-family:var(--display); font-weight:600; font-size:14px; color:var(--muted);
  transition:color .15s ease;
}
.top-link:hover{ color:var(--paper); }

/* ---------- footer (all pages) ---------- */
.foot{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px 26px; flex-wrap:wrap;
  padding-top:22px; border-top:1px solid var(--hair);
  font-size:13px; color:var(--muted-soft);
}
.foot-nav{ display:flex; gap:22px; flex-wrap:wrap; }
.foot-nav a{ transition:color .15s ease; }
.foot-nav a:hover{ color:var(--paper); }
.foot-right{ display:flex; align-items:center; gap:18px; }
.social{ display:flex; gap:10px; }
.social a{
  width:33px; height:33px; border-radius:50%;
  border:1px solid var(--hair);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .15s ease, background .15s ease, transform .15s ease;
}
.social a:hover{ border-color:rgba(26,205,120,0.5); background:rgba(26,205,120,0.08); transform:translateY(-1px); }
.social svg{ width:15px; height:15px; fill:var(--muted); transition:fill .15s ease; }
.social a:hover svg{ fill:var(--green); }

/* ============================================================
   HOME PAGE
   ============================================================ */
.scatter{ position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.slip{
  position:absolute; width:196px; padding:15px 17px;
  background:linear-gradient(165deg, rgba(12,42,28,0.95), rgba(6,26,17,0.95));
  border:1px solid var(--hair); border-radius:15px;
  font-family:var(--display); font-weight:600; font-size:13.5px; line-height:1.35;
  color:rgba(244,246,245,0.88);
  box-shadow:0 26px 44px -28px rgba(0,0,0,0.8);
  animation:drift 15s ease-in-out infinite;
}
.slip b{ display:block; width:6px; height:6px; border-radius:50%; background:var(--green); margin-bottom:11px; }
@keyframes drift{
  0%,100%{ transform:translateY(0) rotate(var(--r)); }
  50%{ transform:translateY(-14px) rotate(calc(var(--r) + 1.2deg)); }
}
.slip:nth-child(1){ --r:-9deg;  top:10%;  left:-3.5%; opacity:.62; animation-delay:0s; }
.slip:nth-child(2){ --r:7deg;   top:2%;   left:27%;   opacity:.34; animation-delay:-2.5s; }
.slip:nth-child(3){ --r:-5deg;  top:47%;  left:-5.5%; opacity:.30; animation-delay:-5s; }
.slip:nth-child(4){ --r:11deg;  bottom:6%; left:12%;  opacity:.54; animation-delay:-7.5s; }
.slip:nth-child(5){ --r:-7deg;  bottom:-3%; left:39%; opacity:.26; animation-delay:-10s; }
.slip:nth-child(6){ --r:6deg;   top:5%;   right:7%;   opacity:.32; animation-delay:-3.5s; }
.slip:nth-child(7){ --r:-10deg; bottom:9%; right:-4%; opacity:.50; animation-delay:-6s; }
.slip:nth-child(8){ --r:4deg;   top:55%;  right:-5%;  opacity:.24; animation-delay:-12s; }

.hero{
  flex:1; display:grid; grid-template-columns:1.06fr 0.94fr;
  gap:56px; align-items:center;
  max-width:1200px; width:100%; margin:0 auto; padding:36px 0 30px;
}
.copy{ animation:rise .7s .04s cubic-bezier(.2,.8,.2,1) both; }
@keyframes rise{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }

h1{
  font-family:var(--display); font-weight:800;
  font-size:clamp(46px, 6.6vw, 86px);
  line-height:0.92; letter-spacing:-0.045em;
}
h1 em{ font-style:normal; color:var(--green); }

.sub{ margin-top:24px; max-width:428px; font-size:17px; line-height:1.52; color:var(--muted); }
.sub strong{ color:var(--paper); font-weight:500; }

.signup{ margin-top:32px; display:flex; gap:9px; max-width:452px; flex-wrap:wrap; }
.signup input[type=email]{
  flex:1 1 208px; min-width:0;
  background:rgba(244,246,245,0.05); border:1px solid var(--hair);
  padding:15px 18px; border-radius:100px; font-size:15px; color:var(--paper);
  transition:border-color .15s ease;
}
.signup input[type=email]:hover{ border-color:rgba(244,246,245,0.2); }
.signup input[type=email]::placeholder{ color:var(--muted-soft); }
.go{
  background:var(--green); color:#04140E; font-family:var(--display);
  font-weight:700; font-size:15px; letter-spacing:-0.01em;
  padding:15px 27px; border-radius:100px; white-space:nowrap;
  transition:transform .15s ease, background .15s ease;
}
.go:hover{ transform:translateY(-1px); background:#26E087; }
.signup.done input, .signup.done .go{ opacity:.5; cursor:default; }
.fine{ margin-top:13px; font-size:13px; color:var(--muted-soft); }
.fine span{ color:var(--green); }

.card-col{ display:flex; flex-direction:column; align-items:center; gap:17px;
  animation:rise .7s .16s cubic-bezier(.2,.8,.2,1) both; }
.card{ width:276px; height:378px; perspective:1400px; cursor:pointer; }
.card-inner{ position:relative; width:100%; height:100%; transform-style:preserve-3d;
  transition:transform .66s cubic-bezier(.22,.85,.25,1); }
.face{
  position:absolute; inset:0; border-radius:26px; backface-visibility:hidden;
  display:flex; flex-direction:column; justify-content:space-between; padding:26px;
  box-shadow:0 40px 70px -30px rgba(0,0,0,0.85);
}
.front{ background:linear-gradient(158deg, #0F3222 0%, #071C12 100%); border:1px solid rgba(26,205,120,0.22); }
.back{ background:linear-gradient(158deg, #F7F9F8 0%, #E9EDEA 100%); color:#04140E; transform:rotateY(180deg); }

.tag{ font-size:12px; font-weight:500; letter-spacing:0.02em; }
.front .tag{ color:var(--muted); }
.back .tag{ color:var(--green-deep); font-weight:600; }
.front-mid{ display:flex; align-items:center; gap:12px; }
.front-mid i{ width:13px; height:13px; border-radius:50%; background:var(--green); }
.front-mid span{ font-family:var(--display); font-weight:800; font-size:56px; letter-spacing:-0.04em; }
.front-foot{ display:flex; align-items:flex-end; justify-content:space-between; }
.arrow{ width:34px; height:34px; border-radius:50%; background:var(--green);
  display:flex; align-items:center; justify-content:center; }
.arrow svg{ width:15px; height:15px; }
.dare{ font-family:var(--display); font-weight:700; font-size:23px; line-height:1.22; letter-spacing:-0.02em; }
.back-foot{ display:flex; gap:7px; flex-wrap:wrap; }
.pill{ font-size:11.5px; font-weight:500; padding:6px 11px; border-radius:100px;
  background:rgba(4,20,14,0.07); color:#25382E; }
.pill.pts{ background:#04140E; color:var(--green); }

.draw{
  display:inline-flex; align-items:center; gap:9px;
  border:1px solid var(--hair); color:var(--paper);
  font-family:var(--display); font-weight:600; font-size:14px;
  padding:12px 22px; border-radius:100px;
  transition:border-color .15s ease, transform .15s ease, background .15s ease;
}
.draw:hover{ border-color:rgba(26,205,120,0.5); background:rgba(26,205,120,0.07); transform:translateY(-1px); }
.draw svg{ width:15px; height:15px; transition:transform .55s ease; }
.draw.spin svg{ transform:rotate(360deg); }
.hint{ font-size:12.5px; color:var(--muted-soft); }

/* ============================================================
   CONTENT PAGES (about / privacy / terms / support)
   ============================================================ */
.doc{ flex:1; max-width:720px; width:100%; margin:0 auto; padding:64px 0 72px;
  animation:rise .6s .04s cubic-bezier(.2,.8,.2,1) both; }
.doc-eyebrow{ font-family:var(--display); font-weight:600; font-size:13px; color:var(--green); }
.doc h1{ font-size:clamp(34px,5vw,54px); margin-top:12px; }
.doc .lede{ margin-top:20px; font-size:18px; line-height:1.6; color:var(--muted); }
.doc h2{
  font-family:var(--display); font-weight:700; font-size:21px; letter-spacing:-0.02em;
  margin-top:44px; padding-top:22px; border-top:1px solid var(--hair);
}
.doc h3{ font-family:var(--display); font-weight:600; font-size:16px; margin-top:26px; }
.doc p{ margin-top:13px; font-size:15.5px; line-height:1.68; color:var(--muted); }
.doc p strong{ color:var(--paper); font-weight:500; }
.doc a:not(.logo):not(.top-link){ color:var(--green); text-decoration:underline; text-underline-offset:3px; }
.doc ul{ margin-top:13px; padding-left:20px; }
.doc li{ font-size:15.5px; line-height:1.66; color:var(--muted); margin-top:8px; }
.doc li strong{ color:var(--paper); font-weight:500; }
.stamp{ margin-top:26px; font-size:13px; color:var(--muted-soft); }

.callout{
  margin-top:26px; padding:20px 22px; border-radius:16px;
  background:rgba(26,205,120,0.06); border:1px solid rgba(26,205,120,0.22);
}
.callout p{ margin-top:0; color:var(--paper); font-size:15px; }
.callout p + p{ margin-top:10px; color:var(--muted); }

.contact-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:22px; }
.contact-card{
  padding:22px; border-radius:18px; border:1px solid var(--hair);
  background:linear-gradient(165deg, rgba(12,42,28,0.6), rgba(6,26,17,0.6));
}
.contact-card h3{ margin-top:0; }
.contact-card p{ margin-top:8px; font-size:14.5px; }

/* ---------- responsive ---------- */
@media (max-width:900px){
  .page{ padding:22px 22px 26px; }
  .hero{ grid-template-columns:1fr; gap:36px; padding:30px 0; }
  .card-col{ order:-1; }
  .slip{ width:154px; font-size:12px; }
  .slip:nth-child(2), .slip:nth-child(5), .slip:nth-child(8){ display:none; }
  .doc{ padding:44px 0 56px; }
}
@media (max-width:600px){
  h1{ font-size:50px; }
  .card{ width:238px; height:328px; }
  .signup{ flex-direction:column; }
  .go{ width:100%; }
  .slip{ opacity:.18 !important; }
  .contact-grid{ grid-template-columns:1fr; }
  .foot{ flex-direction:column; align-items:flex-start; }
  .foot-nav{ gap:16px 18px; }
}
