@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap");

/* Thlengta theme */
html{
  scroll-padding-top: 90px; /* backup for hash jumps */
  scroll-behavior: smooth;  /* reliable native smooth anchor scrolling */
}

:root{
  --bg: #fbfaf6;
  --card: #ffffff;
  --ink: #151515;
  --muted: #4d4d4d;

  --accent: #1f7a5b;    /* Thlengta green */
  --accent2: #ffb000;   /* amber */
  --danger: #d64545;
  --success: #d6f0e5;

  --border: #1b1b1b;
  --shadow: 6px 6px 0 #1b1b1b;

  --max: 1080px;
  --radius: 14px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", "Avenir Next", ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.5;
}

/* =========================================
   GLOBAL iPhone overflow leak protection
   ========================================= */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

/* Allow grid/flex children to actually shrink on iOS */
.card, .pad, .super, .item, .notice, .actions{
  min-width: 0;
}

/* Media and inputs should never force width overflow */
img, video, canvas, svg{
  max-width: 100%;
  height: auto;
}

input, select, textarea{
  max-width: 100%;
}

/* Make sure button text is always readable (some iOS browsers do weird inheritance) */
.btn, button{
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

/* =========================================
   STORE SETTINGS: Export Logs grid fix
   ========================================= */
.export-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* On mobile, stack the export cards */
@media (max-width: 720px){
  .export-grid{
    grid-template-columns: 1fr;
  }

  /* Make buttons full width on small screens so they don't overflow */
  .export-grid .btn{
    width: 100%;
  }
}

/* If any button label is long, allow wrapping instead of overflow */
.btn{
  white-space: normal;
  text-align: center;
}
/* ============== BUTTON READABILITY (iOS SAFE) ============== */

/* Always ensure button text has strong contrast */
.btn, button{
  color: #151515;
  -webkit-text-fill-color: #151515; /* iOS Safari text color fix */
}

/* Disabled buttons: keep readable but clearly disabled */
.btn[disabled], button[disabled],
.btn.is-disabled, button.is-disabled{
  opacity: 0.65;              /* still looks disabled */
  color: #151515;
  -webkit-text-fill-color: #151515;
  cursor: not-allowed;
}

/* If you previously made disabled buttons light-gray text, undo it */
.btn[disabled] span, button[disabled] span{
  color: #151515;
  -webkit-text-fill-color: #151515;
}
/* ============== END BUTTON READABILITY ============== */

/* subtle paper texture (lighter than old pixel grid) */
.bg-grid{
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 1.2px),
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  background-size: 18px 18px, 100% 100%;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 16px; top: 16px; width:auto; height:auto;
  background: var(--card);
  border: 2px solid var(--border);
  padding: 10px 12px;
  z-index: 9999;
  box-shadow: var(--shadow);
}

.nav{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251,250,246,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(0,0,0,0.14);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* IMPORTANT: make sure brand images don't steal clicks on mobile */
.brand img{
  display:block;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  box-shadow: 3px 3px 0 #111;
  font-size: 12px;
}
.dot{
  width:10px;height:10px;border-radius:2px;
  background: var(--accent);
  border: 1.5px solid var(--border);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a{
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links a.active{
  background: color-mix(in srgb, var(--accent) 16%, white);
  border: 1.5px solid rgba(0,0,0,0.12);
}

.hero{
  padding: 56px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.card{
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{ padding: 22px; }

.h-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.h-eyebrow .chip{
  padding: 4px 8px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff0b9;
}

h1{
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

.lede{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.about-lede{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 #111;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.btn:hover{ transform: translate(-1px,-1px); box-shadow: 4px 4px 0 #111; text-decoration:none; }
.btn:active{ transform: translate(0,0); box-shadow: 2px 2px 0 #111; }
.btn.primary{ background: var(--accent); }
.btn.accent{ background: var(--accent2); }
.btn.full{ width: 100%; }

.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 2px 7px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #f3efe4;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
}

.section{
  padding: 22px 0 46px;
}
.section h2{
  margin: 0 0 10px;
  font-size: 22px;
}
.section p{ color: var(--muted); margin: 0 0 12px; }

.list{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-top: 1.5px dashed rgba(0,0,0,0.18);
}
.item:first-child{ border-top: none; }

.icon{
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #ffe7f8;
  box-shadow: 3px 3px 0 #111;
  display:flex; align-items:center; justify-content:center;
  flex: 0 0 auto;
  font-weight: 900;
}

.footer{
  padding: 24px 0 40px;
  color: var(--muted);
  border-top: 1.5px solid rgba(0,0,0,0.12);
}
.footer a{ color: var(--ink); }

.form{
  display:grid;
  gap: 10px;
}
.field{
  display:grid;
  gap: 6px;
}
label{ font-weight: 700; }

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fffdf8;
  font-size: 14px;
}
input:focus, textarea:focus, select:focus{
  outline: 2px solid color-mix(in srgb, var(--accent) 70%, white);
  outline-offset: 1px;
  border-color: var(--border);
}
textarea{ min-height: 120px; resize: vertical; }

.notice{
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff6bf;
}
.notice.warn{ background: #ffe2da; }

.small{ font-size: 13px; color: var(--muted); }

/* ---------- Marketing scroll reveal (premium spring) ---------- */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity  560ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-ready .reveal-left{transform:translateX(-34px)}
.reveal-ready .reveal-right{transform:translateX(34px)}
.reveal-ready .reveal-scale{transform:translateY(18px) scale(.94)}
.reveal-ready .reveal-left.is-visible,.reveal-ready .reveal-right.is-visible,.reveal-ready .reveal-scale.is-visible{transform:translate(0,0) scale(1)}

@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-left,.reveal-right,.reveal-scale{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
    animation:none !important;
  }
}

/* ── Home-page billing toggle ──────────────────────────── */
.hp-billing-pill {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 3px 0 #111;
}
.hp-bp-btn {
  padding: 9px 20px;
  border: none;
  border-radius: 0;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: none;
  color: var(--ink);
  transition: background 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hp-bp-btn:first-child { border-right: 1.5px solid var(--border); }
.hp-bp-btn.active       { background: #eaf6f0; }
.hp-bp-btn:hover        { background: #fff7d4; }
.hp-bp-btn.active:hover { background: #ffd4f4; }

.hp-save-tag {
  background: #e7f8b6;
  color: #27380f;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1.5px solid #27380f;
  white-space: nowrap;
}

.price-main {
  display: inline-block;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.price-main.switching {
  opacity: 0;
  transform: translateY(-5px);
}

.hp-bill-note {
  transition: opacity 0.2s ease;
}

/* ── Hero entrance animation ───────────────────────────── */
@keyframes heroDrop {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
.hero .reveal {
  animation: heroDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  /* Prevent IntersectionObserver transition from overriding on-load anim */
}
.hero .reveal:nth-child(2) { animation-delay: 0.1s; }
.hero .reveal.is-visible   { opacity: 1; transform: translateY(0) scale(1); }

/* highlight active nav link (used by site.js on links with data-nav) */
.nav-links a { transition: opacity 0.14s ease; }
.nav-links a:hover:not(.btn) { opacity: 0.7; text-decoration: none; }
.nav-links a.active {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* smooth card hover (very subtle) */
.card {
  transition: box-shadow 0.16s ease, transform 0.16s ease;
}

/* =========================================================
   MOBILE NAV FIX (NO scroll containers, NO overflow hacks)
   - Hide About/Pricing/Contact
   - Keep only Login visible
   - Prevent logo from covering right side
   ========================================================= */
@media (max-width: 520px){
  .nav-inner{
    align-items: center;
    gap: 10px;
  }

  /* Let brand shrink so it doesn’t push nav off-screen */
  .brand{
    min-width: 0;
    flex: 1 1 auto;
  }

  /* Shrink the two text images safely */
  .brand .small img{
    max-width: 140px;
    height: auto;
  }

  /* Hide all nav links except the Login button */
  .nav-links a:not(.btn){
    display: none;
  }

  /* Keep login button always visible and not squeezed */
  .nav-links{
    flex: 0 0 auto;
  }
  .nav-links .btn{
    white-space: nowrap;
    width: auto;
    padding: 10px 12px;
  }
}

/* ---------- iPhone-safe nav fix ---------- */
@media (max-width: 520px){

  /* Brand should not push into nav space */
  .brand{
    flex: 0 1 auto;
    min-width: 0;
  }

  /* Hide the .com image on small screens */
  .brand img[src*="com"]{
    display: none;
  }

  /* Ensure login button always sits cleanly */
  .nav-links{
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-links .btn{
    white-space: nowrap;
    padding: 10px 12px;
  }
}
/* ---------- END MOBILE NAV FIX ---------- */

/* Employee action buttons (Break, Resume, Checkout) */
/* Scoped so it will not change other buttons across the site */
.employee-actions .employee-btn{
  /* Force readable text on iPhone */
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);

  /* Keep the same retro button feel */
  font-weight: 800;
  border-radius: 12px;

  /* Keep sizing consistent */
  padding: 12px 14px;
  min-height: 44px;
}

/* Primary action (Break or Resume) */
.employee-actions .employee-btn--primary{
  background: #eaf6f0;
}

/* Secondary action (Checkout) */
.employee-actions .employee-btn--secondary{
  background: #fff;
}

/* Optional: make both buttons equal width on mobile */
@media (max-width: 520px){
  .employee-actions .employee-btn{
    flex: 1 1 calc(50% - 10px);
  }
}
/* ---------- END EMPLOYEE ACTION BUTTONS ---------- */

/* =========================================
   STORE SETTINGS: iOS fixes for opening time + export CSV
   ========================================= */


/* Let grid children shrink properly on iOS Safari */
.store-grid-2 > * , .export-grid > * {
  min-width: 0;
}

/* Stack 2-col grids on mobile (must use !important because inline grid-template-columns exists) */
@media (max-width: 720px){
  .store-grid-2{
    grid-template-columns: 1fr !important;
  }
  .export-grid{
    grid-template-columns: 1fr !important;
  }
}

/* iOS date/month inputs love to overflow unless forced */
.export-grid input[type="date"],
.export-grid input[type="month"]{
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* Buttons in export cards should never push outside */
.export-grid .actions{
  width: 100%;
}
.export-grid button,
.export-grid .btn{
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

/* Opening time: stop the checkbox label block from causing weird side overflow */
.store-grid-2 .field label{
  min-width: 0;
}
.store-grid-2 .field label span{
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* FORCE opening time grid to stack on mobile (inline style was overriding) */
@media (max-width: 720px){
  .opening-grid{
    grid-template-columns: 1fr !important;
  }
}

/* Grace label: allow the text block to shrink + wrap normally */
.grace-label{
  min-width: 0;
}
.grace-label span{
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word; /* normal wrap, not per-letter */
}

/* =========================================================
   2026 UI REFRESH
   Minimal, product-first, Stripe-inspired without disrupting flows
   ========================================================= */

:root{
  --bg: #f4f7ff;
  --card: rgba(255,255,255,0.88);
  --ink: #0a2540;
  --muted: #5b6b84;
  --accent: #0f62fe;
  --accent2: #7dd3fc;
  --danger: #d1435b;
  --success: #dcfce7;
  --border: rgba(10, 37, 64, 0.12);
  --border-strong: rgba(10, 37, 64, 0.18);
  --shadow: 0 24px 80px rgba(9, 20, 46, 0.12);
  --max: 1180px;
  --radius: 24px;
}

html{
  scroll-padding-top: 84px;
}

body{
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 98, 254, 0.12), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(125, 211, 252, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f9ff 0%, #eef4ff 100%);
}

.bg-grid{
  background-image:
    radial-gradient(circle at 20% 20%, rgba(15, 98, 254, 0.09), transparent 0, transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(99, 102, 241, 0.08), transparent 0, transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(238,244,255,0.94));
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-attachment: fixed;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.32), transparent 34%),
    radial-gradient(circle at 20% 24%, rgba(255,255,255,0.68), transparent 20%);
  opacity: 0.95;
  z-index: -1;
}

a:hover{
  text-decoration: none;
}

.container{
  width: min(var(--max), calc(100% - 40px));
}

.nav{
  background: rgba(244, 247, 255, 0.72);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  backdrop-filter: blur(22px);
}

.nav-inner{
  padding: 18px 0;
  gap: 18px;
}

.nav .brand{
  position: relative;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.nav .brand > span:first-child{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav .brand img{
  filter: drop-shadow(0 10px 24px rgba(15, 98, 254, 0.16));
}

.nav .brand > span:first-child img,
.nav .brand > img:first-child{
  width: 38px !important;
  height: 38px !important;
  min-width: 38px;
}

.nav .brand .small{
  display: none !important;
}

.nav .brand::after{
  content: "Thlengta";
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links{
  gap: 10px;
}

.nav-links a{
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links h1,
.nav-links h2,
.nav-links h3,
.nav-links p{
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a.active{
  background: rgba(15, 98, 254, 0.08);
  border: 1px solid rgba(15, 98, 254, 0.12);
  color: var(--ink);
}

.badge{
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: none;
  color: var(--muted);
  backdrop-filter: blur(12px);
}

.dot{
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #53b3ff);
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,255,0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card.pad{
  padding: 28px;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 30px 90px rgba(9, 20, 46, 0.14);
}

.h-eyebrow{
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.h-eyebrow .chip{
  padding: 6px 10px;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.06);
  color: var(--accent);
}

h1{
  margin: 12px 0 14px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2{
  letter-spacing: -0.03em;
}

.lede,
.about-lede{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.actions{
  gap: 12px;
  margin-top: 20px;
}

.btn,
button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(9, 20, 46, 0.08);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
button:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(9, 20, 46, 0.12);
}

.btn:active,
button:active{
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(9, 20, 46, 0.10);
}

body:not([data-app-shell="1"]) .btn[style*="box-shadow"],
body:not([data-app-shell="1"]) a.btn[style*="box-shadow"]{
  border: 1px solid rgba(10, 37, 64, 0.10) !important;
  box-shadow: 0 12px 28px rgba(9, 20, 46, 0.08) !important;
}

body:not([data-app-shell="1"]) .card[style*="box-shadow"]{
  box-shadow: var(--shadow) !important;
}

.btn.primary,
button.primary{
  border-color: transparent;
  background: linear-gradient(135deg, #0f62fe, #1292ff);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.btn.accent{
  background: rgba(15, 98, 254, 0.08);
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  border-color: rgba(15, 98, 254, 0.12);
}

.section{
  padding: 36px 0 76px;
}

.section h2{
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin-bottom: 12px;
}

.section p{
  color: var(--muted);
}

.icon{
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 98, 254, 0.10), rgba(125, 211, 252, 0.06));
  box-shadow: none;
}

.footer{
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  color: var(--muted);
}

.form{
  gap: 14px;
}

.field{
  gap: 8px;
}

label{
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea,
select{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  font-size: 0.97rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

input::placeholder,
textarea::placeholder{
  color: #8a98ae;
}

input:focus,
textarea:focus,
select:focus{
  outline: none;
  border-color: rgba(15, 98, 254, 0.34);
  box-shadow:
    0 0 0 4px rgba(15, 98, 254, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.notice,
.error{
  padding: 14px 16px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,249,255,0.82));
  box-shadow: none;
}

.notice{
  background: linear-gradient(180deg, rgba(232, 240, 255, 0.88), rgba(247, 250, 255, 0.92));
}

.notice.warn,
.error{
  background: linear-gradient(180deg, rgba(255, 241, 243, 0.96), rgba(255, 250, 250, 0.92));
}

.small{
  color: var(--muted);
}

table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

table th,
table td{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

table th{
  background: rgba(255,255,255,0.6);
}

tbody tr:hover td{
  background: rgba(255,255,255,0.44);
}

.topbar{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.topbar h2{
  margin: 8px 0 0;
}

.home-shell{
  position: relative;
}

.home-hero{
  padding-top: 52px;
}

.home-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 34px;
  align-items: center;
}

.home-hero-copy{
  display: grid;
  gap: 18px;
}

.home-kicker{
  width: fit-content;
}

.home-kicker strong{
  color: var(--ink);
}

.home-summary{
  max-width: 62ch;
}

.home-proof{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-proof span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.home-proof span::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #53b3ff);
}

.home-hero-panel{
  position: relative;
  overflow: hidden;
}

.home-hero-panel::before{
  content: "";
  position: absolute;
  inset: -24% auto auto 58%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 98, 254, 0.2), transparent 72%);
  pointer-events: none;
}

.home-panel-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.home-panel-head strong{
  display: block;
  font-size: 1.1rem;
}

.home-panel-head span{
  color: var(--muted);
  font-size: 0.94rem;
}

.home-panel-status{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.08);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.home-panel-status::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2bd576;
}

.home-visual-stack{
  display: grid;
  gap: 16px;
}

.home-video-frame{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: linear-gradient(180deg, #14213d, #0a2540);
}

.home-video-frame video{
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  opacity: 0.96;
}

.home-metric-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-metric{
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.home-metric-label{
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-metric strong{
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-metric span{
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-mini-rail{
  display: grid;
  gap: 10px;
}

.home-mini-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.home-mini-card strong{
  display: block;
  font-size: 0.98rem;
}

.home-mini-card span{
  color: var(--muted);
  font-size: 0.88rem;
}

.home-mini-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-section-heading{
  max-width: 62ch;
  margin-bottom: 22px;
}

.home-section-heading .badge{
  margin-bottom: 16px;
}

.home-feature-grid,
.home-proof-grid,
.home-pricing-grid,
.home-contact-grid{
  display: grid;
  gap: 18px;
}

.home-feature-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-feature-card{
  display: grid;
  gap: 14px;
}

.home-feature-card h3{
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.home-feature-card p{
  margin: 0;
}

.home-feature-list{
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-feature-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.93rem;
}

.home-feature-list li::before{
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #53b3ff);
  flex-shrink: 0;
}

.home-proof-grid{
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.home-stat-stack{
  display: grid;
  gap: 12px;
}

.home-stat-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-stat-card{
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.home-stat-card strong{
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.home-stat-card span{
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-ops-list{
  display: grid;
  gap: 12px;
}

.home-ops-item{
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.home-ops-item strong{
  font-size: 1rem;
}

.home-ops-item span{
  color: var(--muted);
  font-size: 0.92rem;
}

.home-workflow{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-step{
  position: relative;
  display: grid;
  gap: 16px;
}

.home-step-index{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 98, 254, 0.08);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
}

.home-step h3{
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.home-step p{
  margin: 0;
}

.home-pricing-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.home-plan{
  position: relative;
  display: grid;
  gap: 18px;
}

.home-plan.is-featured{
  background:
    linear-gradient(180deg, rgba(18, 146, 255, 0.12), rgba(255,255,255,0.96) 34%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,255,0.9));
}

.home-plan-badge{
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-plan h3{
  margin: 0;
  font-size: 1.38rem;
}

.home-plan-price{
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.home-plan-price strong{
  font-size: 2.8rem;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.home-plan-price span{
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 0.35rem;
}

.home-plan-copy{
  color: var(--muted);
  min-height: 48px;
}

.home-plan-list{
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-plan-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-plan-list li::before{
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #53b3ff);
  flex-shrink: 0;
}

.home-plan-actions{
  margin-top: auto;
}

.home-plan-actions .btn{
  width: 100%;
}

.home-faq-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
}

.home-faq-list{
  display: grid;
  gap: 12px;
}

.home-faq-item{
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  overflow: hidden;
}

.home-faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--ink);
}

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

.home-faq-item[open] summary{
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.home-faq-body{
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.home-contact-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-contact-stack{
  display: grid;
  gap: 14px;
}

.home-contact-card{
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.home-contact-card strong{
  font-size: 1rem;
}

.home-contact-card span{
  color: var(--muted);
  font-size: 0.93rem;
}

.home-footer-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-footer-col{
  display: grid;
  gap: 8px;
}

.home-footer-col h4{
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.94rem;
}

.home-footer-col a{
  color: var(--muted);
}

.home-footer-col a:hover{
  color: var(--ink);
}

.mono{
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

@media (max-width: 1080px){
  .home-feature-grid,
  .home-pricing-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-grid,
  .home-faq-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px){
  .home-hero-grid,
  .home-workflow,
  .home-contact-grid,
  .home-footer-grid{
    grid-template-columns: 1fr;
  }

  .home-metric-grid{
    grid-template-columns: 1fr 1fr;
  }

  .home-stat-row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px){
  .container{
    width: min(var(--max), calc(100% - 24px));
  }

  .card.pad{
    padding: 22px;
  }

  .home-feature-grid,
  .home-pricing-grid{
    grid-template-columns: 1fr;
  }

  .home-metric-grid{
    grid-template-columns: 1fr;
  }

  .home-plan-copy{
    min-height: 0;
  }
}

@media (max-width: 520px){
  .nav .brand::after{
    font-size: 0.96rem;
  }

  .nav-links{
    gap: 8px;
  }

  .nav-links a:not(.btn){
    display: none;
  }

  .nav-links .btn{
    padding: 10px 14px;
  }

  h1{
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .section{
    padding: 26px 0 56px;
  }

  .home-proof{
    flex-direction: column;
  }
}

/* =========================================================
   SIMPLE FLOW PASS
   Remove decorative pills and make the app friendlier on phones.
   ========================================================= */

:root{
  --bg: #f7f8fa;
  --card: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --accent: #2563eb;
  --accent2: #16a34a;
  --danger: #c2415b;
  --success: #ecfdf3;
  --border: #e4e7ec;
  --border-strong: #d0d5dd;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 8px 24px rgba(16, 24, 40, 0.06);
  --radius: 8px;
}

body,
.bg-grid{
  background: var(--bg) !important;
  color: var(--ink);
}

body::before{
  display: none !important;
}

.container{
  width: min(var(--max), calc(100% - 28px));
}

.nav{
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(16,24,40,0.04);
}

.nav-inner{
  padding: 12px 0;
}

.nav .brand > span:first-child img,
.nav .brand > img:first-child{
  width: 34px !important;
  height: 34px !important;
  min-width: 34px;
}

.nav-links{
  gap: 6px;
}

.nav-links a{
  padding: 8px 10px;
  color: var(--muted);
}

.h-eyebrow{
  display: none !important;
}

.badge,
.chip,
.home-plan-badge,
.home-mini-pill,
.home-panel-status{
  display: inline;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.badge .dot,
.chip .dot{
  display: none !important;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.card.pad{
  padding: 20px;
}

.card:hover{
  transform: none;
  box-shadow: var(--shadow);
}

h1{
  margin: 8px 0 12px;
  font-size: clamp(2.25rem, 4rem, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2{
  letter-spacing: 0;
}

.section h2{
  font-size: clamp(1.7rem, 2.35rem, 2.35rem);
}

.lede,
.about-lede{
  font-size: 1rem;
  line-height: 1.6;
}

.btn,
button{
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  letter-spacing: 0;
}

.btn:hover,
button:hover,
.btn:active,
button:active{
  transform: none;
  box-shadow: none;
}

.btn.primary,
button.primary{
  background: #2563eb;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

input,
textarea,
select{
  border-radius: 8px;
  background: #ffffff;
}

.notice,
.error{
  border-radius: 8px;
  background: #f9fafb;
}

.topbar{
  display: block;
  padding-bottom: 12px;
  margin-bottom: 16px !important;
}

.home-section-label{
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-check-list{
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-check-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.home-check-list li::before{
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.55rem;
  border-radius: 99px;
  background: var(--accent2);
  flex-shrink: 0;
}

.home-hero{
  padding-top: 34px;
}

.home-hero-grid{
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 24px;
}

.home-hero-panel::before{
  display: none;
}

.home-panel-head{
  margin-bottom: 14px;
}

.home-metric,
.home-mini-card,
.home-stat-card,
.home-ops-item,
.home-contact-card,
.home-faq-item{
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.home-plan-label{
  display: block;
  margin-bottom: -8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px){
  .home-hero-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .container{
    width: min(var(--max), calc(100% - 20px));
  }

  .nav-links a:not(.btn){
    display: none;
  }

  .nav-links .btn.primary{
    display: none;
  }

  .card.pad{
    padding: 16px;
  }

  h1{
    font-size: 2.35rem;
  }
}

/* =========================================================
   MINIMAL LANDING PAGE
   ========================================================= */

.lp-page .section{
  padding: 44px 0;
}

.lp-hero{
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #101828;
}

.lp-hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,24,40,0.18), rgba(16,24,40,0.78));
}

.lp-hero-content{
  position: relative;
  z-index: 1;
  padding: 0 0 54px;
  color: #ffffff;
  max-width: min(var(--max), calc(100% - 28px));
}

.lp-label{
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-hero h1{
  max-width: 760px;
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  color: #ffffff;
}

.lp-lede{
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 1.12rem;
  line-height: 1.5;
}

.lp-hero .btn{
  border-color: rgba(255,255,255,0.26);
}

.lp-hero .btn:not(.primary){
  background: rgba(255,255,255,0.92);
}

.lp-section{
  background: var(--bg);
}

.lp-grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-card{
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.lp-card h2,
.lp-card h3{
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.lp-card p,
.lp-section-head p,
.lp-contact p{
  margin: 0;
  color: var(--muted);
}

.lp-section-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.lp-section-head h2,
.lp-contact h2{
  margin: 0 0 6px;
  font-size: 1.7rem;
}

.lp-pricing{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lp-card-main{
  border-color: #bfdbfe;
  background: #eff6ff;
}

.lp-card .btn{
  width: 100%;
  margin-top: 16px;
}

.lp-contact{
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 20px;
  align-items: start;
}

.lp-contact-form{
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.lp-footer{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 900px){
  .lp-hero{
    min-height: 68svh;
  }

  .lp-hero h1{
    font-size: 3rem;
  }

  .lp-grid-3,
  .lp-pricing,
  .lp-contact{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .lp-page .section{
    padding: 32px 0;
  }

  .lp-hero{
    min-height: 64svh;
  }

  .lp-hero-content{
    padding-bottom: 34px;
  }

  .lp-hero h1{
    font-size: 2.35rem;
  }

  .lp-lede{
    font-size: 1rem;
  }

  .lp-section-head{
    display: block;
  }
}

/* =========================================================
   FOCUSED LANDING PAGE
   ========================================================= */

.lp-nav-min{
  gap: 8px;
}

.lp-hero{
  min-height: 76svh;
  align-items: flex-end;
}

.lp-hero-overlay{
  background: linear-gradient(180deg, rgba(16,24,40,0.08), rgba(16,24,40,0.82));
}

.lp-hero-content{
  padding-bottom: clamp(42px, 8vw, 76px);
}

.lp-hero h1{
  max-width: 700px;
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  letter-spacing: -0.07em;
}

.lp-lede{
  max-width: 500px;
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.lp-strip{
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.lp-strip-inner{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.lp-strip-inner div{
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 22px 24px;
  border-left: 1px solid var(--border);
}

.lp-strip-inner div:last-child{
  border-right: 1px solid var(--border);
}

.lp-strip-inner b{
  font-size: 1rem;
}

.lp-strip-inner span{
  color: var(--muted);
}

.lp-plain{
  padding: 64px 0;
  background: var(--bg);
}

.lp-plain-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 7vw, 86px);
  align-items: start;
}

.lp-plain h2{
  max-width: 560px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.lp-plain p{
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.lp-plan-list{
  display: grid;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.lp-plan-list a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
}

.lp-plan-list a:last-child{
  border-bottom: 0;
}

.lp-plan-list a:hover{
  background: #f8fafc;
}

.lp-plan-list span{
  color: var(--muted);
  text-align: right;
}

@media (max-width: 760px){
  .lp-nav-min .btn:first-child{
    display: none;
  }

  .lp-strip-inner,
  .lp-plain-grid{
    grid-template-columns: 1fr;
  }

  .lp-strip-inner div{
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .lp-strip-inner div:last-child{
    border-bottom: 0;
  }

  .lp-plain{
    padding: 42px 0;
  }

  .lp-plan-list a{
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
  }

  .lp-plan-list span{
    text-align: left;
  }
}

/* =========================================================
   STRIPE-INSPIRED PROFESSIONAL LANDING
   ========================================================= */

.tl-page{
  --tl-bg: #f6f9ff;
  --tl-ink: #0a2540;
  --tl-muted: #425466;
  --tl-soft: #eef4ff;
  --tl-blue: #635bff;
  --tl-cyan: #00d4ff;
  --tl-green: #00a76f;
  --tl-violet: #7c3aed;
  --tl-card: rgba(255,255,255,0.86);
  --tl-border: rgba(10,37,64,0.12);
  --tl-shadow: 0 28px 80px rgba(50, 50, 93, 0.16), 0 8px 24px rgba(0, 0, 0, 0.08);
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(99,91,255,0.16), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(0,212,255,0.18), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f6f9ff 100%);
  color: var(--tl-ink);
  font-family: "Helvetica Neue", "Avenir Next", ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.tl-page a{
  text-decoration: none;
}

.tl-nav{
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(10,37,64,0.08);
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(18px);
}

.tl-nav-inner{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.tl-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.tl-brand img{
  display: block;
}

.tl-nav-links,
.tl-nav-actions,
.tl-actions,
.tl-proof-row,
.tl-billing-note,
.tl-footer-inner{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tl-nav-links{
  justify-content: center;
  gap: 24px;
}

.tl-nav-links a,
.tl-link-btn{
  color: var(--tl-muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.tl-nav-links a:hover,
.tl-link-btn:hover{
  color: var(--tl-ink);
}

.tl-nav-actions{
  justify-content: flex-end;
  gap: 12px;
}

.tl-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.tl-btn:hover{
  transform: translateY(-1px);
}

.tl-btn-primary{
  background: var(--tl-ink);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(10,37,64,0.18);
}

.tl-btn-primary:hover{
  background: #14365c;
}

.tl-btn-secondary{
  border-color: var(--tl-border);
  background: rgba(255,255,255,0.82);
  color: var(--tl-ink);
}

.tl-hero{
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 128px) 0 72px;
}

.tl-hero-bg{
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 640px;
  transform: skewY(-8deg);
  transform-origin: top left;
  background:
    linear-gradient(90deg, rgba(99,91,255,0.95), rgba(0,212,255,0.78) 42%, rgba(0,167,111,0.72)),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.72), transparent 16rem);
  opacity: 0.24;
  pointer-events: none;
}

.tl-hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.tl-kicker{
  margin: 0 0 14px;
  color: var(--tl-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tl-hero h1,
.tl-section-head h2,
.tl-feature-layout h2,
.tl-cta-card h2{
  margin: 0;
  color: var(--tl-ink);
  letter-spacing: -0.07em;
}

.tl-hero h1{
  max-width: 760px;
  font-size: clamp(3.15rem, 8vw, 6.9rem);
  line-height: 0.94;
}

.tl-lede{
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--tl-muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.tl-actions{
  gap: 12px;
  margin-top: 30px;
}

.tl-proof-row{
  gap: 10px;
  margin-top: 24px;
}

.tl-proof-row span{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3f5b75;
  font-size: 0.88rem;
  font-weight: 800;
}

.tl-proof-row span::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tl-blue), var(--tl-cyan));
}

.tl-hero-visual{
  position: relative;
  min-height: 560px;
}

.tl-dashboard-card,
.tl-phone-card,
.tl-flow-card,
.tl-price-card,
.tl-cta-card{
  border: 1px solid var(--tl-border);
  background: var(--tl-card);
  box-shadow: var(--tl-shadow);
  backdrop-filter: blur(18px);
}

.tl-dashboard-card{
  position: absolute;
  top: 24px;
  left: 0;
  right: 42px;
  min-height: 420px;
  padding: 18px;
  border-radius: 28px;
}

.tl-card-float{
  animation: tlFloat 7s ease-in-out infinite;
}

@keyframes tlFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.tl-window-head{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10,37,64,0.08);
}

.tl-window-head span{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d7deea;
}

.tl-window-head span:first-child{ background: #ff6b6b; }
.tl-window-head span:nth-child(2){ background: #fbbf24; }
.tl-window-head span:nth-child(3){ background: #22c55e; }
.tl-window-head b{
  margin-left: auto;
  color: var(--tl-muted);
  font-size: 0.85rem;
}

.tl-metric-hero{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: end;
  padding: 28px 0 20px;
}

.tl-metric-hero span,
.tl-status-grid span,
.tl-store-row span,
.tl-year-note{
  color: var(--tl-muted);
}

.tl-metric-hero strong{
  display: block;
  margin-top: 8px;
  font-size: 4.2rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.tl-spark{
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f5f8ff, #ffffff);
}

.tl-spark i{
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--tl-cyan), var(--tl-blue));
}

.tl-status-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tl-status-grid div{
  padding: 14px;
  border-radius: 18px;
  background: #f7faff;
}

.tl-status-grid b{
  display: block;
  margin-top: 4px;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.tl-store-row{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
}

.tl-store-dot{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tl-green), var(--tl-cyan));
}

.tl-store-row div:nth-child(2){
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.tl-store-row a{
  color: var(--tl-blue);
  font-weight: 900;
}

.tl-phone-card{
  position: absolute;
  right: 0;
  bottom: 8px;
  width: min(250px, 42vw);
  min-height: 450px;
  padding: 14px;
  border-radius: 38px;
}

.tl-phone-notch{
  width: 86px;
  height: 22px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #0a2540;
}

.tl-phone-screen{
  display: grid;
  align-content: center;
  min-height: 370px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0a2540, #17385c);
  color: #fff;
  text-align: center;
}

.tl-qr-mark{
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, #fff 12px, transparent 12px) 0 0 / 28px 28px,
    linear-gradient(#fff 12px, transparent 12px) 0 0 / 28px 28px,
    rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 950;
}

.tl-phone-screen h3{
  margin: 0;
  color: #fff;
}

.tl-phone-screen p{
  margin: 8px 0 18px;
  color: rgba(255,255,255,0.72);
}

.tl-phone-screen button{
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--tl-ink);
  font-weight: 900;
}

.tl-section{
  padding: clamp(72px, 10vw, 118px) 0;
}

.tl-section-head{
  max-width: 820px;
  margin-bottom: 34px;
}

.tl-section-head-center{
  margin-inline: auto;
  text-align: center;
}

.tl-section-head h2,
.tl-feature-layout h2,
.tl-cta-card h2{
  font-size: clamp(2.15rem, 5vw, 4.3rem);
  line-height: 0.98;
}

.tl-section-head p,
.tl-cta-card p{
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--tl-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.tl-section-head-center p{
  margin-inline: auto;
}

.tl-flow-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tl-flow-card{
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 26px;
  border-radius: 28px;
}

.tl-flow-card::after{
  content: "";
  position: absolute;
  inset: auto -24px -58px auto;
  width: 170px;
  height: 170px;
  border-radius: 40px;
  transform: rotate(-16deg);
  background: linear-gradient(135deg, rgba(99,91,255,0.16), rgba(0,212,255,0.2));
}

.tl-icon-wrap{
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #f2f6ff;
}

.tl-icon-wrap img{
  max-width: 36px;
  max-height: 36px;
}

.tl-flow-card h3{
  max-width: 320px;
  margin: 26px 0 10px;
  color: var(--tl-ink);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.tl-flow-card p{
  margin: 0;
  color: var(--tl-muted);
  line-height: 1.6;
}

.tl-feature-band{
  background: #0a2540;
  color: #fff;
}

.tl-feature-layout{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.tl-feature-layout .tl-kicker{
  color: #80e9ff;
}

.tl-feature-layout h2{
  color: #fff;
}

.tl-feature-list{
  display: grid;
  gap: 14px;
}

.tl-feature-list article{
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
}

.tl-feature-list span{
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(128,233,255,0.12);
  color: #80e9ff;
  font-weight: 950;
}

.tl-feature-list h3{
  margin: 0 0 6px;
  color: #fff;
}

.tl-feature-list p{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.tl-pricing-section{
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.tl-billing-note{
  justify-content: center;
  gap: 10px;
  margin: -10px 0 26px;
}

.tl-billing-note span{
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--tl-border);
  border-radius: 999px;
  background: #fff;
  color: var(--tl-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.tl-pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tl-price-card{
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
}

.tl-price-card-featured{
  border-color: rgba(99,91,255,0.34);
  background: linear-gradient(180deg, #ffffff, #f2f5ff);
  transform: translateY(-8px);
}

.tl-price-card-popular{
  border-color: rgba(0,167,111,0.26);
}

.tl-plan-tag{
  justify-self: start;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--tl-blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.tl-price-head h3{
  margin: 0;
  color: var(--tl-ink);
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.tl-price-head p{
  min-height: 48px;
  margin: 8px 0 0;
  color: var(--tl-muted);
  line-height: 1.5;
}

.tl-price{
  color: var(--tl-ink);
  font-size: 2.5rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.tl-price span{
  color: var(--tl-muted);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
}

.tl-year-note{
  min-height: 20px;
  font-size: 0.84rem;
}

.tl-price-card ul{
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.tl-price-card li{
  position: relative;
  padding-left: 24px;
  color: #334155;
  line-height: 1.4;
}

.tl-price-card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tl-blue), var(--tl-cyan));
}

.tl-price-card .tl-btn{
  width: 100%;
  margin-top: 8px;
}

.tl-cta-section{
  padding-top: 32px;
}

.tl-cta-card{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 6vw, 58px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 0%, rgba(0,212,255,0.2), transparent 20rem),
    linear-gradient(135deg, #ffffff, #f3f6ff);
}

.tl-footer{
  padding: 28px 0 42px;
  color: var(--tl-muted);
}

.tl-footer-inner{
  gap: 18px;
}

.tl-footer-inner span{
  margin-right: auto;
}

.tl-footer a{
  color: var(--tl-muted);
  font-weight: 750;
}

@media (max-width: 1080px){
  .tl-nav-links{
    display: none;
  }

  .tl-nav-inner{
    grid-template-columns: auto 1fr;
  }

  .tl-nav-actions{
    justify-self: end;
  }

  .tl-hero-grid,
  .tl-feature-layout,
  .tl-cta-card{
    grid-template-columns: 1fr;
  }

  .tl-hero-visual{
    min-height: 520px;
  }

  .tl-pricing-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tl-price-card-featured{
    transform: none;
  }
}

@media (max-width: 760px){
  .tl-nav-inner{
    min-height: 66px;
  }

  .tl-brand img:last-child{
    width: 126px;
  }

  .tl-link-btn{
    display: none;
  }

  .tl-hero{
    padding-top: 56px;
  }

  .tl-hero-grid{
    gap: 26px;
  }

  .tl-hero-visual{
    min-height: 470px;
  }

  .tl-dashboard-card{
    right: 0;
    min-height: 380px;
    border-radius: 22px;
  }

  .tl-metric-hero{
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .tl-metric-hero strong{
    font-size: 3.1rem;
  }

  .tl-spark{
    height: 90px;
  }

  .tl-phone-card{
    width: 178px;
    min-height: 322px;
    border-radius: 30px;
  }

  .tl-phone-screen{
    min-height: 250px;
    padding: 14px;
    border-radius: 22px;
  }

  .tl-qr-mark{
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .tl-flow-grid,
  .tl-pricing-grid{
    grid-template-columns: 1fr;
  }

  .tl-flow-card,
  .tl-price-card{
    border-radius: 22px;
  }
}

@media (max-width: 480px){
  .tl-hero h1{
    font-size: 3rem;
  }

  .tl-actions .tl-btn,
  .tl-nav-actions .tl-btn{
    width: 100%;
  }

  .tl-nav-actions{
    width: 120px;
  }

  .tl-status-grid{
    grid-template-columns: 1fr;
  }

  .tl-phone-card{
    display: none;
  }

  .tl-hero-visual{
    min-height: 430px;
  }

  .tl-feature-list article{
    grid-template-columns: 1fr;
  }

  .tl-footer-inner span{
    flex-basis: 100%;
  }
}

/* Real product demo replaces decorative dashboard mockups. */
.tl-hero-media{
  position: relative;
  padding: 2px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(99,91,255,0.8), rgba(0,212,255,0.62), rgba(0,167,111,0.54));
  box-shadow: 0 36px 100px rgba(50,50,93,0.22), 0 14px 34px rgba(10,37,64,0.14);
}

.tl-video-frame{
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  background: #0a2540;
}

.tl-video-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.tl-video-frame video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tl-video-caption{
  position: absolute;
  left: 24px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(10,37,64,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(10,37,64,0.12);
  color: var(--tl-muted);
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.tl-video-status{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00a76f;
  box-shadow: 0 0 0 4px rgba(0,167,111,0.12);
}

@media (max-width: 1080px){
  .tl-hero-media{
    max-width: 860px;
  }
}

@media (max-width: 760px){
  .tl-hero-media{
    border-radius: 22px;
  }

  .tl-video-frame{
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .tl-video-caption{
    left: 14px;
    bottom: -16px;
  }
}

/* 2026 homepage: concise product story with progressive account access. */
.tl-page{
  --tl-blue: #2563eb;
  --tl-cyan: #24b7d8;
  --tl-green: #0f9f73;
}

.tl-nav-inner{
  min-height: 72px;
}

.tl-btn,
.tl-google-btn,
.tl-access-form > button[type="submit"]{
  border-radius: 12px;
}

.tl-hero{
  padding: clamp(64px, 8vw, 108px) 0 clamp(72px, 9vw, 116px);
}

.tl-hero-bg{
  inset: -38% -8% auto 44%;
  height: 760px;
  transform: rotate(-8deg);
  border-radius: 80px;
  background:
    radial-gradient(circle at 20% 26%, rgba(255,255,255,0.82), transparent 13rem),
    linear-gradient(125deg, rgba(37,99,235,0.86), rgba(36,183,216,0.68) 54%, rgba(15,159,115,0.52));
  opacity: 0.2;
}

.tl-hero-grid{
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.tl-hero-copy{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tl-hero h1{
  max-width: 620px;
  font-size: clamp(3.5rem, 4.7vw, 4.2rem);
  line-height: 0.95;
}

.tl-lede{
  max-width: 510px;
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.tl-hero-media{
  width: 100%;
  padding: 1px;
  border-radius: 25px;
  background: rgba(10,37,64,0.18);
  box-shadow: 0 32px 80px rgba(50,50,93,0.18), 0 10px 28px rgba(10,37,64,0.1);
}

.tl-video-frame{
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

.tl-video-frame video{
  object-position: center;
}

.tl-access-card{
  width: min(100%, 470px);
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(10,37,64,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 22px 58px rgba(50,50,93,0.13), 0 6px 18px rgba(10,37,64,0.07);
  text-align: left;
  backdrop-filter: blur(18px);
  scroll-margin-top: 96px;
}

.tl-staff-code-card{
  width: min(100%, 470px);
  margin-top: 14px;
  padding: 7px;
  border: 1px solid rgba(10,37,64,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 36px rgba(50,50,93,0.1), 0 4px 14px rgba(10,37,64,0.06);
  backdrop-filter: blur(18px);
}

.tl-staff-code-control{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(10,37,64,0.16);
  border-radius: 999px;
  background: #fff;
}

.tl-staff-code-control input{
  min-width: 0;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0 16px;
  color: var(--tl-ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  text-transform: uppercase;
  outline: none;
}

.tl-staff-code-control input:focus{
  box-shadow: inset 0 0 0 2px rgba(37,99,235,0.2);
}

.tl-staff-code-control button{
  height: 46px;
  border: 0;
  border-left: 1px solid rgba(10,37,64,0.16);
  border-radius: 999px 0 0 999px;
  background: var(--tl-ink);
  color: #fff;
  -webkit-text-fill-color: #fff;
  padding: 0 18px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.tl-access-card [hidden]{
  display: none !important;
}

.tl-google-btn,
.tl-access-form > button[type="submit"]{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(10,37,64,0.16);
  background: #fff;
  color: var(--tl-ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tl-google-btn{
  gap: 10px;
}

.tl-google-btn:hover,
.tl-access-form > button[type="submit"]:hover{
  border-color: rgba(37,99,235,0.42);
  box-shadow: 0 8px 20px rgba(37,99,235,0.1);
  transform: translateY(-1px);
}

.tl-access-form > button[type="submit"]{
  margin-top: 10px;
  border-color: var(--tl-ink);
  background: var(--tl-ink);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.tl-access-form > button[type="submit"]:disabled{
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.tl-access-divider{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: #7890a6;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tl-access-divider::before,
.tl-access-divider::after{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10,37,64,0.1);
}

.tl-access-form,
.tl-step-form label{
  display: grid;
  gap: 8px;
}

.tl-access-form input[type="email"],
.tl-access-form input[type="password"],
.tl-access-form input[type="text"],
.tl-access-form input[type="tel"]{
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  padding: 0 14px;
  border: 1px solid rgba(10,37,64,0.16);
  border-radius: 11px;
  background: #fff;
  color: var(--tl-ink);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.tl-access-form input:focus{
  border-color: var(--tl-blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.tl-step-back{
  display: grid;
  place-items: center;
  width: 28px;
  min-height: 28px;
  margin: -6px 0 0 -7px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  box-shadow: none;
  color: var(--tl-muted);
  -webkit-text-fill-color: var(--tl-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.tl-step-back:hover,
.tl-step-back:active{
  border: 0;
  background: #eef4ff;
  box-shadow: none;
  color: var(--tl-blue);
  -webkit-text-fill-color: var(--tl-blue);
  transform: none;
}

.tl-step-heading{
  display: grid;
  gap: 5px;
  margin: 0 0 5px;
  text-align: left;
}

.tl-step-heading h2{
  margin: 0;
  color: var(--tl-ink);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.tl-step-heading p{
  margin: 0;
  color: var(--tl-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.tl-step-heading strong{
  color: #425b72;
  overflow-wrap: anywhere;
}

.tl-access-check{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: var(--tl-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.tl-access-check input{
  width: 17px;
  height: 17px;
  accent-color: var(--tl-blue);
}

.tl-access-help{
  justify-self: center;
  margin-top: 2px;
  color: var(--tl-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.tl-access-error{
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 3px solid #d33f49;
  border-radius: 6px;
  background: #fff4f4;
  color: #a82630;
  font-size: 0.84rem;
  line-height: 1.4;
}

.tl-access-error.is-success{
  border-left-color: var(--tl-green);
  background: #effbf6;
  color: #087455;
}

.tl-step-form{
  gap: 12px;
}

.tl-step-form label > span{
  color: #425b72;
  font-size: 0.78rem;
  font-weight: 800;
}

.tl-otp-input{
  height: 60px;
  text-align: center;
  font-size: 1.65rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.34em;
  font-variant-numeric: tabular-nums;
}

.tl-resend-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--tl-muted);
  font-size: 0.8rem;
}

.tl-resend-row button{
  min-height: 0;
  padding: 2px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  color: var(--tl-blue);
  -webkit-text-fill-color: var(--tl-blue);
  font: inherit;
  font-weight: 850;
}

.tl-resend-row button:hover,
.tl-resend-row button:active{
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.tl-access-note{
  margin: 9px 0 0;
  color: var(--tl-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

.tl-home-honeypot{
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tl-sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.tl-strengths{
  padding-top: clamp(64px, 8vw, 96px);
  background: #fff;
}

.tl-strengths .tl-section-head{
  max-width: 650px;
}

.tl-strengths .tl-flow-card{
  min-height: 250px;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(50,50,93,0.1), 0 3px 12px rgba(10,37,64,0.05);
}

.tl-strengths .tl-flow-card h3{
  margin-top: 22px;
}

.tl-plan-tag{
  border-radius: 8px;
}

.tl-billing-note{
  gap: 20px;
}

.tl-billing-note span{
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tl-billing-control{
  display: grid;
  justify-items: center;
  gap: 9px;
  margin: -8px 0 30px;
}

.tl-billing-control > p{
  margin: 0;
  color: var(--tl-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.tl-billing-switch{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 320px);
  padding: 4px;
  border: 1px solid rgba(10,37,64,0.1);
  border-radius: 15px;
  background: #eaf0f8;
  box-shadow: inset 0 1px 2px rgba(10,37,64,0.06);
  isolation: isolate;
}

.tl-billing-switch::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(10,37,64,0.12);
  transform: translateX(0);
  transition: transform .24s cubic-bezier(.2,.8,.2,1);
}

.tl-billing-switch[data-billing="yearly"]::before{
  transform: translateX(100%);
}

.tl-billing-switch button{
  position: relative;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  color: #6b7f92;
  -webkit-text-fill-color: #6b7f92;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  transition: color .18s ease;
}

.tl-billing-switch button:hover,
.tl-billing-switch button:active{
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.tl-billing-switch button.is-active{
  color: var(--tl-ink);
  -webkit-text-fill-color: var(--tl-ink);
}

.tl-billing-switch small{
  color: var(--tl-blue);
  font-size: 0.67rem;
  font-weight: 900;
}

.tl-price .tl-price-amount{
  color: var(--tl-ink);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.tl-year-note{
  color: var(--tl-muted);
  font-weight: 700;
}

@media (max-width: 1000px){
  .tl-hero-grid{
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .tl-hero-copy{
    max-width: 680px;
    margin: 0 auto;
  }

  .tl-hero-media{
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 600px){
  .tl-nav-actions{
    width: auto;
  }

  .tl-nav-actions .tl-btn{
    width: auto;
    min-height: 40px;
    padding: 0 13px;
  }

  .tl-hero{
    padding-top: 46px;
  }

  .tl-hero h1{
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .tl-access-card{
    margin-top: 24px;
    padding: 16px;
    border-radius: 18px;
  }

  .tl-staff-code-card{
    margin-top: 12px;
  }

  .tl-staff-code-control input{
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .tl-staff-code-control button{
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .tl-billing-control{
    margin-bottom: 24px;
  }

  .tl-billing-switch{
    width: 100%;
    max-width: 340px;
  }

  .tl-hero-media,
  .tl-video-frame{
    border-radius: 18px;
  }

  .tl-flow-card{
    min-height: 0;
  }
}
