/* AwareLock product page — self-contained, dark, matches the app's language. */

:root {
  --bg: #060911;
  --ink: #f4f6fb;
  --ink-2: #b9c0d0;
  --ink-3: #7c8496;
  --ink-4: #4d5566;
  --accent: #3f8cff;
  --accent-deep: #1f6feb;
  --violet: #6f9dff;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.15);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI Variable Display', 'Segoe UI', Inter,
    system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/**
 * Any `display` rule of ours outranks the browser's own [hidden] styling, so a
 * hidden element with a layout rule stays on screen — which is how a sign-in
 * overlay ends up covering a dashboard that is working perfectly well behind it.
 */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(63, 140, 255, 0.3);
}

/* --- aurora --- */
.aurora {
  position: fixed;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  filter: blur(70px) saturate(140%);
  opacity: 0.5;
}
.aurora i {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: drift 30s var(--ease) infinite alternate;
}
.aurora i:nth-child(1) {
  width: 52vw;
  height: 52vw;
  left: -6%;
  top: -8%;
  background: radial-gradient(circle, rgba(63, 140, 255, 0.32), transparent 66%);
}
.aurora i:nth-child(2) {
  width: 56vw;
  height: 56vw;
  right: -12%;
  top: 6%;
  background: radial-gradient(circle, rgba(31, 111, 235, 0.28), transparent 66%);
  animation-delay: -10s;
}
.aurora i:nth-child(3) {
  width: 44vw;
  height: 44vw;
  left: 30%;
  top: 46%;
  background: radial-gradient(circle, rgba(64, 132, 255, 0.2), transparent 68%);
  animation-delay: -18s;
}
@keyframes drift {
  to {
    transform: translate3d(2vw, -3vh, 0) scale(1.14);
  }
}

/* --- nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 54px);
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* "Lock" carries the brand blue, exactly as it does in the logo lockup. */
.brand b {
  font-weight: inherit;
  color: var(--accent);
}

.mark {
  width: 30px;
  height: 30px;
  display: block;
  flex: none;
}
.mark.small {
  width: 26px;
  height: 26px;
}
.mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav nav a:hover {
  color: var(--ink);
  background: var(--glass);
}

@media (max-width: 640px) {
  .nav nav a:not(.btn) {
    display: none;
  }
}

/* --- shared --- */
main {
  position: relative;
  z-index: 1;
}

section {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 108px) clamp(18px, 5vw, 54px);
}

h1 {
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.038em;
}

h1 span {
  background: linear-gradient(100deg, var(--accent), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.032em;
}

h3 {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.022em;
}

.center {
  text-align: center;
}

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.lede {
  color: var(--ink-2);
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 58ch;
  margin-top: 20px;
}

.lede.small {
  font-size: 16px;
  margin-inline: auto;
}

.fineprint {
  color: var(--ink-4);
  font-size: 13px;
  margin-top: 14px;
}

.link {
  color: var(--accent);
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

/* --- buttons --- */
.btn {
  appearance: none;
  border: 1px solid var(--line-2);
  background: var(--glass-2);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 550;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease),
    box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-color: transparent;
  color: #04122b;
  font-weight: 650;
  box-shadow: 0 14px 34px -14px rgba(63, 140, 255, 0.75);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #6aa6ff, #1f6feb);
  box-shadow: 0 18px 40px -14px rgba(63, 140, 255, 0.85);
}

.btn.big {
  padding: 15px 30px;
  font-size: 16.5px;
}

.btn.small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn.block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

/* --- hero --- */
.hero {
  padding-top: clamp(46px, 7vw, 88px);
  text-align: center;
}

.hero h1,
.hero .lede,
.hero .cta {
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 550;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  background: var(--glass);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(63, 140, 255, 0.16);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(63, 140, 255, 0.02);
  }
}

.cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* hero preview card */
.shot {
  margin-top: clamp(46px, 7vw, 80px);
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(28px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85);
  padding: 14px;
}

.shotinner {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border-radius: 18px;
  background: #0a0b10;
  text-align: left;
}

@media (max-width: 760px) {
  .shotinner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 22px;
    padding: 26px 20px;
  }
}

.ringdemo {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
}

.ringdemo svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.ringdemo .t {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 8;
}

.ringdemo .f {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 540.35;
  stroke-dashoffset: 540.35;
  filter: drop-shadow(0 0 14px rgba(63, 140, 255, 0.55));
  animation: sweep 2.4s var(--ease) 400ms forwards;
}

@keyframes sweep {
  to {
    stroke-dashoffset: 0;
  }
}

.ringtext {
  text-align: center;
}

.ringtext b {
  display: block;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.ringtext span {
  color: var(--ink-3);
  font-size: 12.5px;
}

.shotcopy h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.shotcopy p {
  color: var(--ink-3);
  font-size: 15px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.chip {
  font-size: 12px;
  font-weight: 550;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--ink-3);
}

.chip.on {
  color: #b9d4ff;
  border-color: rgba(63, 140, 255, 0.3);
  background: rgba(63, 140, 255, 0.1);
}

/* --- bands --- */
.band h2 + .steps,
.band h2 + .grid,
.band h2 + .faq,
.band h2 + .downloads {
  margin-top: 44px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.steps li,
.grid article,
.faq details {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(20px);
}

.steps b {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.steps p,
.grid p {
  color: var(--ink-3);
  font-size: 14.5px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 18px;
}

.grid h3 {
  margin-bottom: 9px;
}

/* --- privacy --- */
.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 860px) {
  .privacy {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.ticks {
  list-style: none;
  display: grid;
  gap: 14px;
}

.ticks li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-2);
  font-size: 14.5px;
}

.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid rgba(63, 140, 255, 0.35);
  background: rgba(63, 140, 255, 0.12);
}

.ticks li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}

/* --- buy --- */
.buy {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--line-2);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(26px);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 40px 90px -34px rgba(0, 0, 0, 0.9);
}

.picker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 22px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
}

.step {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--glass-2);
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms var(--ease);
}

.step:hover {
  background: rgba(255, 255, 255, 0.15);
}

.qty {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.qty input {
  width: 74px;
  appearance: textfield;
  -moz-appearance: textfield;
  background: transparent;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.qty input:focus {
  outline: none;
}

.qty span {
  color: var(--ink-3);
  font-size: 14px;
}

.total {
  text-align: right;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  min-width: 108px;
}

.total b {
  display: block;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.total span {
  color: var(--ink-4);
  font-size: 11.5px;
}

/* --- downloads --- */
.downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.dl {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid var(--line-2);
  background: var(--glass);
  text-decoration: none;
  color: var(--ink);
  transition: transform 200ms var(--ease), background 200ms var(--ease),
    border-color 200ms var(--ease);
}

.dl:hover {
  transform: translateY(-2px);
  background: var(--glass-2);
  border-color: rgba(63, 140, 255, 0.35);
}

.dl svg {
  width: 26px;
  height: 26px;
  flex: none;
  fill: var(--accent);
}

.dl b {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
}

.dl small {
  color: var(--ink-3);
  font-size: 12.5px;
}

/* A build that does not exist yet: still a mail link, visibly not a download. */
.dl.soon {
  border-style: dashed;
  border-color: var(--line);
}

.dl.soon b,
.dl.soon svg {
  opacity: 0.62;
}

/* --- faq --- */
.faq {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-inline: auto;
}

.faq details {
  padding: 0;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 550;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 19px;
  line-height: 1;
  flex: none;
  transition: transform 220ms var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 24px 20px;
  color: var(--ink-3);
  font-size: 14.5px;
  max-width: 68ch;
}

/* --- footer --- */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 40px 24px 56px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
}

footer p {
  color: var(--ink-3);
  font-size: 14px;
}

/* --- success page --- */
.keys {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.keyrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.32);
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  user-select: all;
}

.keyrow button {
  margin-left: auto;
  font-family: var(--font);
  letter-spacing: normal;
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--glass-2);
  color: var(--ink);
  cursor: pointer;
}

.keyrow button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.spinner {
  width: 26px;
  height: 26px;
  margin: 26px auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================================
   Utilities and legal pages.

   The site runs under a strict Content-Security-Policy with `style-src 'self'`,
   which blocks inline style attributes as well as <style> blocks. Everything
   below exists so no markup needs one.
   ========================================================================== */

.stack-sm > * + * {
  margin-top: 10px;
}

.mt-0 {
  margin-top: 0;
}
.mt-sm {
  margin-top: 14px;
}
.mt-md {
  margin-top: 24px;
}
.mt-lg {
  margin-top: 34px;
}

.narrow {
  max-width: 620px;
  margin-inline: auto;
}

.wide {
  max-width: 780px;
}

.muted {
  color: var(--ink-3);
}

.dim {
  color: var(--ink-4);
}

.nowrap {
  white-space: nowrap;
}

/* --- ordered "next steps" list --- */

.steps-ol {
  color: var(--ink-2);
  font-size: 14.5px;
  padding-left: 22px;
  display: grid;
  gap: 9px;
}

.steps-ol li::marker {
  color: var(--accent);
  font-weight: 600;
}

/* --- divider inside a card --- */

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0 26px;
}

/* --- legal / long-form pages --- */

.prose {
  max-width: 74ch;
  margin-inline: auto;
}

.prose h1 {
  font-size: clamp(30px, 4.4vw, 44px);
  letter-spacing: -0.034em;
  margin-bottom: 10px;
}

.prose .updated {
  color: var(--ink-4);
  font-size: 13.5px;
  margin-bottom: 38px;
}

.prose h2 {
  font-size: 21px;
  letter-spacing: -0.022em;
  margin: 38px 0 12px;
}

.prose h3 {
  font-size: 16.5px;
  margin: 26px 0 8px;
}

.prose p,
.prose li {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.68;
}

.prose p + p {
  margin-top: 14px;
}

.prose ul,
.prose ol {
  margin: 14px 0 14px 22px;
  display: grid;
  gap: 9px;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose .callout {
  border: 1px solid var(--line-2);
  background: var(--glass);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 26px 0;
}

.prose .callout p {
  font-size: 14.5px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14.5px;
}

.prose th,
.prose td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  vertical-align: top;
}

.prose th {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* --- 404 --- */

.oops {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.oops .mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
}

.oops h1 {
  font-size: clamp(30px, 5vw, 46px);
}

/* --- success page --- */

.order-card {
  max-width: 620px;
}

.keys-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.step:disabled {
  opacity: 0.32;
  cursor: default;
}

/* --- notices, and the cancellation field --- */

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 196, 106, 0.28);
  background: rgba(255, 196, 106, 0.08);
  color: #ffe0b4;
  font-size: 13.5px;
  line-height: 1.6;
}

.notice b {
  color: #fff2dc;
}

.buy.narrow {
  max-width: 520px;
}

.keyfield {
  margin: 26px 0 14px;
}

.keyfield input {
  width: 100%;
  text-align: center;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 15px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line-2);
  color: var(--ink);
  text-transform: uppercase;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.keyfield input::placeholder {
  color: var(--ink-4);
}

.keyfield input:focus {
  outline: none;
  border-color: rgba(63, 140, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(63, 140, 255, 0.12);
}

.keyfield.bad input {
  border-color: rgba(255, 122, 138, 0.6);
}

.fineprint.good {
  color: #a9c9ff;
}

.fineprint.bad {
  color: #ff9aa8;
}

/* --- checkout panel ---
   Stripe's card form is mounted inside .sheetscroll; the sheet itself is only a
   frame around it, so nothing here can interfere with the iframe's own layout. */

body.sheetopen {
  overflow: hidden;
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 32px);
}

.sheet[hidden] {
  display: none;
}

.sheetback {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 12, 0.72);
  backdrop-filter: blur(6px);
  animation: fade 220ms var(--ease);
}

.sheetbody {
  position: relative;
  width: min(560px, 100%);
  max-height: min(880px, 92vh);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--line-2);
  background: #0b1220;
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  animation: rise 300ms var(--ease);
}

.sheetbody header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.sheetbody h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.sheetclose {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--glass);
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.sheetclose:hover {
  color: var(--ink);
  border-color: var(--line-2);
  background: var(--glass-2);
}

.sheetscroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 24px 26px;
}

/* Stripe renders its card form white and owns the inside of its iframe, so the
   panel gives it a white surface to sit on rather than pretending otherwise. It
   reads as a deliberate card, not a hole in the design. */
#sheetstripe:not(:empty) {
  background: #fff;
  border-radius: 16px;
  padding: 6px 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

#sheetstripe iframe {
  display: block;
  border-radius: 12px;
}

.sheetstatus {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

@keyframes fade {
  from {
    opacity: 0;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
}
