/* Bonusjakt — markedsside (redesign). Mørk hero + lyst innhold.
   Tokens matcher macOS-appen: brand #0A2FA6/#2E6BE6, suksess #12855C. */

:root {
  --brand-1: #2e6be6;
  --brand-2: #0a2fa6;
  --grad: linear-gradient(135deg, #2e6be6, #0a2fa6);
  --accent: #2e6be6;
  --accent-soft: #9dbcf8;
  --success: #12855c;
  --success-bright: #3ed598;
  --star: #f5a623;
  --warn-ink: #b4530a;
  --warn-bg: #fdf1e4;
  --warn-line: #f3d9bc;

  --ink: #0f172a;
  --ink-2: #55627a;
  --ink-3: #8792a6;
  --bg: #f6f8fb;
  --card: #ffffff;
  --line: #e6eaf2;
  --dark: #0b1120;
  --dark-2: #141926;

  --hero-fg: #f2f4f9;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.tnum { font-variant-numeric: tabular-nums; }

@keyframes bjPulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes bjToastIn { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---------- Kampanjebanner ---------- */
.campaign {
  background: linear-gradient(90deg, #0a2fa6, #2e6be6); color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 9px 20px; font-size: 13px; font-weight: 500; text-align: center; flex-wrap: wrap;
}
.campaign .tag {
  background: rgba(255,255,255,.18); border-radius: 999px; padding: 2px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
}
.campaign a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 700;
  border-radius: 12px; text-decoration: none; cursor: pointer; border: 0; }
.btn-primary { color: #fff; background: var(--grad); box-shadow: 0 10px 28px rgba(46,107,230,.45); }
.btn-primary:hover { box-shadow: 0 12px 34px rgba(46,107,230,.65); text-decoration: none; }
.btn-lg { font-size: 16px; padding: 15px 30px; }
.btn-ghost-dark { color: var(--hero-fg); background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); font-weight: 600; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.btn-outline { color: var(--accent); border: 1.5px solid var(--accent); background: transparent; }
.btn-outline:hover { background: rgba(46,107,230,.06); text-decoration: none; }
.btn-block { display: block; text-align: center; }

/* ---------- Nav ---------- */
.nav { display: flex; align-items: center; gap: 28px; padding: 20px 0; position: relative; }
.nav .logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700;
  letter-spacing: -.2px; margin-right: auto; }
.nav .logo .mark { width: 30px; height: 30px; border-radius: 8px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  box-shadow: 0 4px 12px rgba(46,107,230,.4); }
.nav .links { display: flex; align-items: center; gap: 26px; font-size: 13.5px; }
.nav .cta { font-size: 13.5px; font-weight: 600; color: #fff; background: var(--grad);
  border-radius: 9px; padding: 9px 18px; box-shadow: 0 6px 16px rgba(46,107,230,.35); }
.nav .cta:hover { text-decoration: none; box-shadow: 0 8px 20px rgba(46,107,230,.55); }

/* dark nav (hero) */
.nav-dark .logo { color: var(--hero-fg); }
.nav-dark .links a { color: rgba(242,244,249,.72); }
.nav-dark .links a:hover { color: #fff; text-decoration: none; }
/* light nav (subsider) */
.nav-light .logo { color: var(--ink); }
.nav-light .logo .mark { color: #fff; }
.nav-light .links a { color: var(--ink-2); }

/* ---------- Hero (mørk) ---------- */
.hero { background: var(--dark); color: var(--hero-fg); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 70% -10%, rgba(46,107,230,.28), transparent 65%),
              radial-gradient(700px 380px at 8% 110%, rgba(46,107,230,.14), transparent 60%); }
.hero .wrap { position: relative; }
.hero-grid { display: flex; gap: 56px; align-items: center; padding: 64px 0 60px; flex-wrap: wrap; }
.hero-copy { flex: 1; min-width: 440px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.4px; color: var(--accent-soft); background: rgba(46,107,230,.14);
  border: 1px solid rgba(46,107,230,.4); border-radius: 999px; padding: 6px 14px; margin-bottom: 22px; }
.hero h1 { font-size: 52px; line-height: 1.06; letter-spacing: -1.5px; font-weight: 800;
  margin-bottom: 18px; text-wrap: balance; }
.hero h1 .grad { background: linear-gradient(90deg, #7ea6f5, #3e7bff);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: 17px; color: rgba(242,244,249,.72); max-width: 520px; margin-bottom: 26px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px;
  color: rgba(242,244,249,.55); flex-wrap: wrap; }
.trust .ok { color: var(--success-bright); }
.trust .dot { opacity: .35; }

/* live-treff-vindu */
.live { flex: none; width: 430px; }
.live-win { background: var(--dark-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; box-shadow: 0 30px 70px rgba(0,0,0,.5); overflow: hidden; }
.live-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07); }
.live-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.live-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--success-bright); }
.live-live .p { width: 7px; height: 7px; border-radius: 50%; background: var(--success-bright);
  box-shadow: 0 0 8px rgba(62,213,152,.9); animation: bjPulse 1.4s ease-in-out infinite; }
.live-body { display: flex; flex-direction: column; gap: 10px; padding: 14px 14px 16px; }
.find { border-radius: 11px; padding: 12px 14px; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.find.hot { background: rgba(18,133,92,.12); border-color: rgba(62,213,152,.4); }
.find .route { font-size: 13.5px; font-weight: 700; letter-spacing: -.1px; color: var(--hero-fg); }
.find .meta { font-size: 11.5px; color: rgba(242,244,249,.55); margin-top: 2px; }
.find .right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex: none; }
.find .tag { font-size: 10.5px; font-weight: 700; letter-spacing: .4px; border-radius: 999px;
  padding: 2px 9px; color: var(--accent-soft); background: rgba(46,107,230,.18); }
.find.hot .tag { color: var(--success-bright); background: rgba(18,133,92,.22); }
.find .ago { font-size: 10.5px; color: rgba(242,244,249,.45); }
.live-foot { text-align: center; font-size: 11.5px; color: rgba(242,244,249,.4); padding-top: 2px; }
.live-stats { display: flex; justify-content: center; gap: 22px; margin-top: 18px; font-size: 12px;
  color: rgba(242,244,249,.55); flex-wrap: wrap; }
.live-stats b { color: var(--hero-fg); }

/* ---------- Seksjonshoder ---------- */
.section { padding: 56px 0; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.6px; color: var(--accent);
  margin-bottom: 12px; text-transform: uppercase; }
.head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.head h2 { font-size: 36px; letter-spacing: -.8px; font-weight: 800; margin-bottom: 14px; }
.head p { font-size: 16px; color: var(--ink-2); }
h2 { text-wrap: balance; }

/* ---------- Anatomi-tidslinje ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.tl { background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 20px; box-shadow: 0 1px 3px rgba(15,23,42,.05); }
.tl.hi { border: 1.5px solid var(--accent); box-shadow: 0 8px 24px rgba(46,107,230,.15); }
.tl.gone { background: #f1f3f8; border: 1px dashed #c9d2e2; box-shadow: none; }
.tl .t { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.tl .t small { font-size: 13px; color: var(--ink-3); }
.tl.hi .t { color: var(--accent); }
.tl .h { font-size: 13.5px; font-weight: 700; margin: 8px 0 4px; }
.tl.hi .h { color: var(--accent); }
.tl .b { font-size: 12.5px; line-height: 1.5; color: var(--ink-2); }
.tl.gone .t, .tl.gone .h, .tl.gone .b { color: var(--ink-3); }
.timeline-note { text-align: center; margin: 34px auto 0; font-size: 15px; color: var(--ink-2); max-width: 520px; }

/* ---------- Verdi-anker (mørkt kort) ---------- */
.anchor { background: var(--dark); border-radius: 20px; color: var(--hero-fg);
  padding: 52px 56px; display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
  position: relative; overflow: hidden; }
.anchor::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 85% 0%, rgba(46,107,230,.22), transparent 60%); }
.anchor > * { position: relative; }
.anchor-copy { flex: 1; min-width: 380px; }
.anchor-copy h2 { font-size: 32px; letter-spacing: -.7px; font-weight: 800; margin-bottom: 14px; }
.anchor-copy p { font-size: 15.5px; line-height: 1.65; color: rgba(242,244,249,.7); max-width: 460px; }
.anchor-calc { flex: none; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.calc { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 22px 26px; min-width: 190px; }
.calc .lbl { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; color: rgba(242,244,249,.5); margin-bottom: 8px; }
.calc .old { font-size: 15px; color: rgba(242,244,249,.65); text-decoration: line-through; }
.calc .new { font-size: 24px; font-weight: 800; color: var(--success-bright); letter-spacing: -.5px; margin-top: 4px; }
.calc .new small { font-size: 12px; font-weight: 600; color: rgba(242,244,249,.5); }
.calc .save { font-size: 12px; color: rgba(242,244,249,.5); margin-top: 6px; }
.vs { font-size: 22px; color: rgba(242,244,249,.4); }
.calc.bj { background: rgba(46,107,230,.14); border: 1px solid rgba(46,107,230,.45); min-width: 150px; text-align: center; }
.calc.bj .lbl { color: var(--accent-soft); }
.calc.bj .amt { font-size: 34px; font-weight: 800; letter-spacing: -1px; }
.calc.bj .amt small { font-size: 14px; font-weight: 600; color: rgba(242,244,249,.55); }

/* ---------- Funksjoner ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 22px; box-shadow: 0 1px 3px rgba(15,23,42,.05); transition: box-shadow .15s; }
.card:hover { box-shadow: 0 8px 24px rgba(15,23,42,.08); }
.card .ico { width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(46,107,230,.14), rgba(46,107,230,.06));
  border: 1px solid rgba(46,107,230,.22); display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: 14px; }
.card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }

/* ---------- Steg ---------- */
.step .n { width: 32px; height: 32px; border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; margin-bottom: 16px; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }

/* ---------- Ukens treff + omtaler ---------- */
.social { display: flex; gap: 40px; align-items: stretch; flex-wrap: wrap; }
.teaser { flex: 1; min-width: 420px; background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: 0 1px 3px rgba(15,23,42,.05); overflow: hidden; display: flex; flex-direction: column; }
.teaser-head { display: flex; align-items: center; gap: 10px; padding: 20px 24px 14px; }
.teaser-head .t { font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.teaser-head .badge { font-size: 11.5px; font-weight: 700; color: var(--success);
  background: rgba(18,133,92,.1); border-radius: 999px; padding: 3px 10px; }
.teaser-body { position: relative; flex: 1; }
.teaser-rows { display: flex; flex-direction: column; gap: 8px; padding: 4px 24px 20px;
  filter: blur(5px); pointer-events: none; user-select: none; }
.teaser-rows .r { display: flex; justify-content: space-between; font-size: 13.5px; padding: 10px 14px;
  background: var(--bg); border-radius: 9px; }
.teaser-rows .r b { font-weight: 700; }
.teaser-rows .r span { color: var(--ink-2); }
.teaser-lock { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.85)); }
.teaser-lock .l { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px; }
.teaser-lock .t { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.quotes { flex: 1; min-width: 420px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px; box-shadow: 0 1px 3px rgba(15,23,42,.05); }
.quote .stars { font-size: 13px; color: var(--star); letter-spacing: 2px; margin-bottom: 8px; }
.quote .text { font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.quote .who { font-size: 12.5px; color: var(--ink-3); margin-top: 10px; font-weight: 600; }

/* ---------- Pris ---------- */
.pricing-band { background: var(--card); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: 76px 0; }
.campaign-pill { text-align: center; margin-bottom: 34px; }
.campaign-pill span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px;
  font-weight: 700; color: var(--warn-ink); background: var(--warn-bg); border: 1px solid var(--warn-line);
  border-radius: 999px; padding: 6px 16px; }
.prices { display: flex; gap: 22px; justify-content: center; align-items: stretch; flex-wrap: wrap; margin-top: 26px; }
.price { width: 330px; background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 28px; box-shadow: 0 1px 3px rgba(15,23,42,.05); display: flex; flex-direction: column; }
.price.feat { border: 2px solid var(--accent); box-shadow: 0 16px 40px rgba(46,107,230,.16); position: relative; }
.price .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; font-weight: 700; color: #fff; background: linear-gradient(90deg,#2e6be6,#0a2fa6);
  border-radius: 999px; padding: 5px 14px; white-space: nowrap; }
.price .plan { font-size: 14px; font-weight: 700; color: var(--ink-2); margin-bottom: 10px; }
.price .amount { font-size: 40px; font-weight: 800; letter-spacing: -1px; display: flex; align-items: baseline; gap: 10px; }
.price .amount small { font-size: 15px; font-weight: 600; color: var(--ink-3); }
.price .was { font-size: 15px; color: #b0b9c9; text-decoration: line-through; }
.price .note { font-size: 13px; color: var(--ink-3); margin: 6px 0 18px; }
.price ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 13.5px;
  color: var(--ink); margin-bottom: 24px; }
.price ul li b { color: var(--success); }
.price .btn { margin-top: auto; padding: 13px 0; font-size: 14.5px; }
.pay-note { text-align: center; margin-top: 22px; font-size: 12.5px; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq h2 { font-size: 32px; letter-spacing: -.7px; font-weight: 800; text-align: center; margin-bottom: 30px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 20px; margin-bottom: 10px; }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 12px;
  padding: 16px 0; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .car { color: var(--accent); font-size: 12px; transition: transform .15s; }
.faq details[open] summary .car { transform: rotate(90deg); }
.faq details .a { padding: 0 0 18px 24px; font-size: 13.5px; line-height: 1.65; color: var(--ink-2); }

/* ---------- Siste CTA (mørk) ---------- */
.final { background: var(--dark); color: var(--hero-fg); position: relative; overflow: hidden; text-align: center; }
.final::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 340px at 50% 120%, rgba(46,107,230,.3), transparent 65%); }
.final .wrap { position: relative; max-width: 680px; padding-top: 84px; padding-bottom: 90px; }
.final h2 { font-size: 40px; letter-spacing: -1px; font-weight: 800; margin-bottom: 14px; }
.final p { font-size: 16px; color: rgba(242,244,249,.65); margin-bottom: 30px; }
.final .sysreq { margin-top: 14px; font-size: 12.5px; color: rgba(242,244,249,.45); }

/* ---------- Footer (mørk) ---------- */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.07); color: rgba(242,244,249,.5); }
.footer .wrap { display: flex; gap: 30px; align-items: flex-start; justify-content: space-between;
  padding: 26px 24px; font-size: 12px; line-height: 1.6; flex-wrap: wrap; }
.footer b { color: rgba(242,244,249,.8); }
.footer a { color: rgba(242,244,249,.5); text-decoration: underline; text-underline-offset: 2px; }
.footer .legal { max-width: 520px; text-align: right; }

/* ---------- Sosialt bevis-toast ---------- */
.toast { position: fixed; left: 22px; bottom: 22px; z-index: 50; background: #fff;
  border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 16px 40px rgba(15,23,42,.18);
  padding: 13px 18px 13px 14px; display: flex; align-items: center; gap: 12px;
  animation: bjToastIn .45s ease-out; max-width: 320px; }
.toast.hidden { display: none; }
.toast .ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(18,133,92,.12);
  color: var(--success); display: flex; align-items: center; justify-content: center; font-size: 15px; flex: none; }
.toast .tt { font-size: 13px; font-weight: 700; color: var(--ink); }
.toast .ts { font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }

/* ---------- Subsider (kjøp / takk / personvern) ---------- */
.page { max-width: 760px; margin: 0 auto; }
.page.center { text-align: center; }
.muted { color: var(--ink-2); font-size: 14.5px; }
.key-box { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 20px; font-weight: 700;
  letter-spacing: .04em; background: var(--card); border: 2px dashed var(--accent); border-radius: 12px;
  padding: 22px; margin: 22px 0; word-break: break-all; }
.spinner { width: 26px; height: 26px; margin: 0 auto 14px; border: 3px solid rgba(46,107,230,.2);
  border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(15,23,42,.05); }

/* ---------- Responsivt ---------- */
@media (max-width: 900px) {
  .hero h1 { font-size: 38px; }
  .hero-copy, .live { min-width: 100%; width: 100%; }
  .timeline, .grid-3 { grid-template-columns: 1fr; }
  .anchor { padding: 34px 26px; }
  .prices { flex-direction: column; align-items: center; }
  .nav .links a:not(.cta) { display: none; }
  .footer .legal { text-align: left; }
  .final h2 { font-size: 30px; }
}
