:root{
  --bg:#1a1a1a;
  --fg:#f0f0f0;
  --muted:#a3a3a3;
  --line:rgba(240,240,240,.12);
  --accent:#7750b2; /* bruise-violet */
  --max:980px;
  --radius:14px;

  /* caption geometry */
  --caption-baseline-offset: 0px;  /* tweak if you want 1–2px lower/higher */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.2px;
}

.wrap{ min-height:100%; display:flex; align-items:stretch; justify-content:center; }
.screen{
  width:100%;
  max-width:var(--max);
  padding:42px 18px;
  display:none;
  min-height:100vh;
}
.screen[data-active="true"]{ display:flex; flex-direction:column; justify-content:space-between; gap:28px; }

.block{ display:flex; flex-direction:column; gap:14px; }
h1{ margin:0; font-size:46px; line-height:1.05; font-weight:600; }
h2{ margin:0; font-size:28px; line-height:1.15; font-weight:600; }
p{ margin:0; line-height:1.6; }
.muted{ color:var(--muted); }
.tiny{ font-size:12px; }

.kicker{
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(240,240,240,.75);
}

.kicker-title{
  font-size:14px;
  letter-spacing:0.32em;
  color:var(--fg);
  opacity:0.9;
}

.kicker-strong{
  font-weight:700;
  color:rgba(240,240,240,.9);
}

.muted-small{
  font-size: 0.8em; /* ~20% smaller */
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:10px;
  border-bottom:1px solid var(--line);
}

.btn{
  margin-top:10px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--fg);
  padding:12px 16px;
  border-radius:var(--radius);
  cursor:pointer;
  width:fit-content;
  text-decoration:none;
}
.btn:hover{ border-color:rgba(240,240,240,.28); text-decoration:none; }
.btn:visited{ color:var(--fg); text-decoration:none; }

.btn-primary{
  border-color: rgba(119,80,178,.9);
  background: rgba(119,80,178,.14);
}
.btn-primary:hover{
  border-color: rgba(119,80,178,1);
  background: rgba(119,80,178,.22);
}


.link{
  border:0;
  background:transparent;
  color:rgba(240,240,240,.8);
  cursor:pointer;
  padding:10px 0;
}
.link:hover{ color:var(--fg); }

.options{ display:flex; flex-direction:column; gap:10px; margin-top:10px; }
.opt{
  text-align:left;
  border:1px solid var(--line);
  background:rgba(0,0,0,.12);
  color:var(--fg);
  padding:14px 14px;
  border-radius:var(--radius);
  cursor:pointer;
  font-size: 1.05em;
}
.opt:hover{ border-color:rgba(240,240,240,.28); }
.opt strong{
  color: var(--accent);
  font-weight: 600;
  margin-right: 10px;
  font-size: 1.2em; /* ~20% bigger */
}

.result{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 820px){
  .result{ grid-template-columns: 1fr; }
  h1{ font-size:40px; }
}

/* Left column: image card */
.result-media{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:black;
}
.result-media img{
  width:100%;
  height:auto;
  display:block;
}

/* Right column: copy becomes a positioning context */
.result-copy{
  position: relative;
  min-height: 100%;
  display:flex;
  flex-direction:column;
}

/* Move the rule + "This is only..." DOWN by roughly one line */
.result-lower{
  margin-top: 18px; /* approximate one line of text */
}

/* The right-column caption aligned with title start and bottom of image */
.result-cta{
  margin-top: 1em;                 /* space between short result text and CTA */
  display: flex;
  flex-direction: column;
  gap: 1em;                        /* consistent spacing between CTA lines */
  align-items: flex-start;
}

.result-cta .btn{
  margin-top: 0;                   /* override global .btn spacing */
}

.result-delivery{
  color: var(--accent);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.result-caption-right{
  position: static;                /* keep it in-flow (no weird overlaps) */
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
}

/* keep the caption from overlapping on smaller screens */
@media (max-width: 820px){
  .result-caption-right{
    position: static;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    max-width: none;
  }
  .result-lower{ margin-top: 14px; }
}

.rule{ height:1px; background:var(--line); margin:6px 0; }

.footer{
  font-size:12px;
  color:rgba(240,240,240,.6);
  display:flex;
  gap:10px;
  align-items:center;
}
.footer a{ color:rgba(240,240,240,.7); text-decoration:none; }
.footer a:hover{ color:var(--fg); }
.dot{ opacity:.5; }