/* Give Up & See — marketing site. Brand: aurora violet → fuchsia on deep indigo. */
:root {
  --violet: #8B5CF6;
  --fuchsia: #EC4899;
  --cyan: #22D3EE;
  --night: #0C0A1A;
  --night-2: #14122B;
  --surface: #1B1832;
  --text: #F5F3FF;
  --muted: #B6B0D6;
  --line: rgba(255, 255, 255, 0.10);
  --grad: linear-gradient(135deg, var(--violet), var(--fuchsia));
  --radius: 18px;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  background: var(--night);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--fuchsia); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 10, 26, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--text); }
.brand .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 24px rgba(139, 92, 246, 0.6); }
.brand .logo { width: 32px; height: 32px; border-radius: 9px; object-fit: cover; box-shadow: 0 0 24px rgba(139, 92, 246, 0.5); }
.hero-logo { width: 96px; height: 96px; border-radius: 24px; object-fit: cover; margin: 0 auto 22px; display: block; box-shadow: 0 14px 50px rgba(236, 72, 153, 0.4); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 680px) { .nav-links a:not(.cta) { display: none; } }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  background: var(--grad); color: #fff !important; font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.35);
}
.btn:hover { transform: translateY(-1px); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 96px 0 80px; text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: -20% 0 auto 0; height: 520px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(139, 92, 246, 0.30), transparent 70%),
              radial-gradient(50% 50% at 80% 10%, rgba(236, 72, 153, 0.22), transparent 70%);
  pointer-events: none;
}
.hero .badge { display: inline-block; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(34px, 6vw, 62px); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { max-width: 640px; margin: 20px auto 0; color: var(--muted); font-size: clamp(16px, 2.4vw, 20px); }
.stores { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 12px; padding: 11px 20px; border-radius: 13px;
  background: #000; border: 1px solid rgba(255, 255, 255, 0.22); color: #fff; min-width: 210px;
}
.store:hover { border-color: #fff; color: #fff; transform: translateY(-1px); }
.badge-ic { width: 26px; height: 26px; flex: 0 0 auto; color: #fff; }
.store .lbl { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.store .lbl small { font-size: 11px; font-weight: 500; color: #d4d4d4; letter-spacing: 0.02em; }
.store .lbl b { font-size: 19px; font-weight: 600; }

/* Sections */
section.block { padding: 72px 0; border-top: 1px solid var(--line); }
.eyebrow { color: var(--fuchsia); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; }
h2.title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin: 10px 0 14px; letter-spacing: -0.01em; }
.lead { color: var(--muted); max-width: 680px; font-size: 18px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; }
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 15px; }

/* Legal / content pages */
.page { padding: 60px 0 80px; }
.page h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; }
.page .updated { color: var(--muted); margin: 8px 0 28px; font-size: 14px; }
.page h2 { font-size: 20px; margin: 30px 0 10px; }
.page p, .page li { color: #DBD7F0; margin-bottom: 12px; }
.page ul { padding-left: 22px; }
.legal-prose { max-width: 760px; }
.legal-prose .note { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
@media (max-width: 740px) { .contact-grid { grid-template-columns: 1fr; } }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 44px 0; color: var(--muted); }
.foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 14px; }
.foot-links a:hover { color: var(--text); }
.foot small { color: #6E688F; }
.tag { color: var(--muted); font-style: italic; }
