/* styles.css — dark + cinematic with teal emphasis + reveal animations */

:root{
  --primary:#0f6bc8;
  --accent:#15b0a7;

  /* Cinematic theme */
  --bg:#070B14;
  --surface:#0C1224;
  --surface-2:#0A1020;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --border:rgba(234,240,255,.10);

  /* Shadows + glows (more teal) */
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow-soft: 0 12px 34px rgba(0,0,0,.40);
  --glow-primary: 0 0 0 1px rgba(15,107,200,.22), 0 18px 48px rgba(15,107,200,.14);
  --glow-accent: 0 0 0 1px rgba(21,176,167,.22), 0 18px 54px rgba(21,176,167,.18);

  --radius:16px;
  --radius-sm:12px;

  --container:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  line-height:1.55;

  background:
    radial-gradient(900px 520px at 20% 15%, rgba(15,107,200,.22), transparent 60%),
    radial-gradient(900px 520px at 85% 0%, rgba(21,176,167,.22), transparent 60%),
    radial-gradient(1200px 700px at 50% 120%, rgba(21,176,167,.10), transparent 60%),
    linear-gradient(180deg, #070B14 0%, #060A12 60%, #050810 100%);
}

img{ max-width:100%; height:auto; }
a{ color:inherit; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

.section{ padding:78px 0; }

.section-soft{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top:1px solid rgba(234,240,255,.06);
  border-bottom:1px solid rgba(234,240,255,.06);
}

.section-head{
  max-width: 820px;
  margin-bottom: 26px;
}
.section-head h2{
  margin:0 0 10px 0;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  color: #F4F7FF;
}
.section-sub{
  margin:0;
  color:var(--muted);
  font-size: 16px;
}

/* Skip link */
.skip-link{
  position:absolute;
  top:10px;
  left:10px;
  transform: translateY(-150%);
  background: rgba(255,255,255,.92);
  color:#0b1220;
  padding:10px 12px;
  border-radius: 12px;
  text-decoration:none;
  z-index: 9999;
}
.skip-link:focus{
  transform: translateY(0);
  outline: 3px solid rgba(21,176,167,.55);
  outline-offset: 2px;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,11,20,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234,240,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  min-height: 74px;
  padding: 10px 18px;
  position: relative;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width: 170px;
}
.brand-mark{
  width: 12px;
  height: 12px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 12px 26px rgba(21,176,167,.18);
}
.brand-text{
  font-weight: 900;
  letter-spacing: .10em;
  font-size: 12.5px;
  color: #F4F7FF;
}

/* Desktop nav */
.nav{
  display:none;
  gap: 10px;
  align-items:center;
  margin-left: 8px;
  flex: 1;
}
.nav-link{
  text-decoration:none;
  color: rgba(234,240,255,.84);
  font-weight: 650;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
  position: relative;
}
.nav-link:hover{
  color: rgba(234,240,255,.96);
  background: rgba(255,255,255,.04);
}
.nav-link-cta{
  color: rgba(160,235,228,.98);
}
.nav-link-cta:hover{
  background: rgba(21,176,167,.12);
}

.header-actions{
  display:none;
  align-items:center;
  gap:10px;
}

/* Mobile nav */
.nav-toggle{
  position:absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.nav-toggle-btn{
  margin-left:auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  padding: 10px;
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(255,255,255,.04);
}
.nav-toggle-btn span{
  display:block;
  height: 2px;
  width: 100%;
  background: rgba(234,240,255,.78);
  border-radius: 2px;
}

.nav-mobile{
  display:none;
  position:absolute;
  left: 18px;
  right: 18px;
  top: 70px;
  background: rgba(12,18,36,.92);
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  gap: 6px;
}
.nav-toggle:checked ~ .nav-mobile{
  display:flex;
  flex-direction:column;
}
.nav-mobile .nav-link{
  padding: 12px 12px;
  font-size: 15px;
}
.nav-mobile .btn{
  justify-content:center;
}

/* Hero */
.hero{
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.eyebrow{
  display:inline-block;
  margin: 0 0 12px 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21,176,167,.12);
  border: 1px solid rgba(21,176,167,.22);
  color: rgba(234,240,255,.92);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
}

.hero h1{
  margin: 0 0 12px 0;
  color: #F7FAFF;
  letter-spacing: -0.05em;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
}

.subheadline{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 62ch;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.cta-secondary{
  display:flex;
  gap: 10px;
  align-items:center;
  color: rgba(234,240,255,.72);
  font-weight: 650;
  margin: 14px 0 0 0;
}

.hero-metrics{
  display:grid;
  gap: 12px;
  margin: 18px 0 0 0;
  padding: 14px 0 0 0;
  border-top: 1px solid rgba(234,240,255,.10);
}
.metric{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items:start;
}
.metric dt{
  font-weight: 900;
  color: rgba(234,240,255,.92);
}
.metric dd{
  margin: 0;
  color: var(--muted);
}

/* Preview card */
.hero-preview{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.preview-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.preview-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(21,176,167,.18), rgba(15,107,200,.10));
  border: 1px solid rgba(21,176,167,.22);
  color: rgba(234,240,255,.92);
  font-weight: 800;
  font-size: 13px;
}
.mini-actions{
  display:flex;
  gap: 6px;
}
.mini-dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(234,240,255,.25);
}
.preview-note{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 72ch;
}

/* Mini points */
.mini-points{
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: grid;
  gap: 8px;
  max-width: 70ch;
}
.mini-points li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(234,240,255,.72);
}
.mini-points li span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 10px;
  background: rgba(21,176,167,.10);
  border: 1px solid rgba(21,176,167,.18);
  color: rgba(234,240,255,.92);
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

/* Graphs */
.charts{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.chart-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.chart-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.chart-title{
  font-weight: 900;
  color: rgba(234,240,255,.95);
  font-size: 13px;
  letter-spacing: .01em;
}

.chart-sub{
  color: rgba(234,240,255,.60);
  font-weight: 700;
  font-size: 12px;
}

.sparkline, .bars{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 12px;
}

.sparkline-grid{
  stroke: rgba(234,240,255,.10);
  stroke-width: 1;
}

.sparkline-line{
  fill: none;
  stroke: rgba(21,176,167,.95);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 18px rgba(21,176,167,.15));
}

.sparkline-dot{
  fill: rgba(21,176,167,.95);
}

.bar{
  fill: rgba(15,107,200,.55);
  stroke: rgba(15,107,200,.20);
}
.bar.b2, .bar.b4{
  fill: rgba(21,176,167,.60);
  stroke: rgba(21,176,167,.20);
}

.chart-kpis{
  display:flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.kpi{
  flex: 1 1 90px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(234,240,255,.10);
  border-radius: 12px;
  padding: 10px;
}

.kpi-label{
  display:block;
  color: rgba(234,240,255,.62);
  font-weight: 700;
  font-size: 11.5px;
}

.kpi-val{
  display:block;
  margin-top: 2px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: rgba(234,240,255,.95);
}

.chart-note{
  margin: 10px 0 0 0;
  color: rgba(234,240,255,.68);
  font-size: 13px;
}

/* Cards */
.card-grid{ display:grid; gap: 14px; }
.card-grid.three{ grid-template-columns: 1fr; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .10s ease, border-color .15s ease, box-shadow .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(234,240,255,.18);
  box-shadow: var(--shadow-soft);
}
.card h3{
  margin: 0 0 10px 0;
  color: #F4F7FF;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0 0 12px 0;
  color: var(--muted);
}

/* Outcomes checklist */
.checklist{
  list-style:none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.10);
}
.check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(21,176,167,.10);
  border: 1px solid rgba(21,176,167,.18);
  color: rgba(234,240,255,.92);
  font-weight: 900;
  flex: 0 0 auto;
}

/* Steps */
.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
}
.step{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  transition: transform .10s ease, border-color .15s ease, box-shadow .15s ease;
}
.step:hover{
  transform: translateY(-2px);
  border-color: rgba(234,240,255,.18);
  box-shadow: var(--shadow-soft);
}
.step-num{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(21,176,167,.12);
  border: 1px solid rgba(21,176,167,.20);
  color: rgba(234,240,255,.92);
  font-weight: 900;
}
.step-body h3{
  margin: 0 0 6px 0;
  color: #F4F7FF;
  font-size: 17px;
}
.step-body p{
  margin: 0;
  color: var(--muted);
}

/* Trust tiles */
.tile-grid{ display:grid; gap: 12px; }
.tile-grid.four{ grid-template-columns: 1fr; }

.tile{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform .10s ease, border-color .15s ease, box-shadow .15s ease;
}
.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(234,240,255,.18);
  box-shadow: var(--shadow-soft);
}
.tile h3{
  margin: 0 0 8px 0;
  color: #F4F7FF;
  font-size: 16.5px;
}
.tile p{
  margin: 0;
  color: var(--muted);
}
.disclaimer{
  margin: 14px 0 0 0;
  color: rgba(234,240,255,.68);
  font-size: 13.5px;
}

/* CTA band */
.cta-band{
  padding: 78px 0;
  background:
    radial-gradient(900px 420px at 25% 20%, rgba(21,176,167,.20), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(15,107,200,.16), transparent 60%),
    rgba(255,255,255,.02);
  border-top: 1px solid rgba(234,240,255,.10);
}
.cta-inner{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:flex-start;
  padding: 20px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  box-shadow: var(--shadow-soft);
}
.cta-text h2{
  margin: 0 0 6px 0;
  color: #F7FAFF;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.8vw, 34px);
}
.cta-text p{
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}

/* Footer */
.site-footer{
  padding: 26px 0;
  border-top: 1px solid rgba(234,240,255,.10);
  background: rgba(7,11,20,.65);
}
.footer-inner{
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:flex-start;
}
.footer-copy{
  margin: 0;
  color: rgba(234,240,255,.72);
  font-weight: 650;
  font-size: 14px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}
.footer-link{
  text-decoration:none;
  color: rgba(234,240,255,.78);
  font-weight: 650;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 10px;
}
.footer-link:hover{
  background: rgba(255,255,255,.04);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  transition: transform .05s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, rgba(21,176,167,.95), rgba(15,107,200,.90));
  color:#06101A;
  border-color: rgba(21,176,167,.25);
  box-shadow: var(--glow-accent);
}
.btn-primary:hover{
  box-shadow: 0 0 0 1px rgba(21,176,167,.25), 0 22px 60px rgba(21,176,167,.20);
}

.btn-outline{
  background: rgba(255,255,255,.02);
  color: rgba(234,240,255,.92);
  border-color: rgba(234,240,255,.18);
}
.btn-outline:hover{
  border-color: rgba(234,240,255,.28);
  background: rgba(255,255,255,.04);
}

.btn-ghost{
  background: rgba(15,107,200,.10);
  color: rgba(234,240,255,.92);
  border-color: rgba(15,107,200,.16);
  box-shadow: var(--glow-primary);
}
.btn-ghost:hover{
  box-shadow: 0 0 0 1px rgba(15,107,200,.20), 0 22px 60px rgba(15,107,200,.16);
}

.btn-lg{
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 14.5px;
}

.text-link{
  color: rgba(160,235,228,.98);
  font-weight: 900;
  text-decoration: none;
  padding: 2px 2px;
  border-radius: 8px;
}
.text-link:hover{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Inline CTAs */
.inline-ctas{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Focus */
:focus-visible{
  outline: 3px solid rgba(21,176,167,.55);
  outline-offset: 2px;
  border-radius: 12px;
}

/* Reveal animations (Samsung-like) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .btn, .card, .tile, .step{ transition: none; }
}

/* Desktop layout */
@media (min-width: 860px){
  .nav{ display:flex; }
  .header-actions{ display:flex; }
  .nav-toggle, .nav-toggle-btn, .nav-mobile{ display:none; }

  .hero-grid{
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
  }

  .card-grid.three{
    grid-template-columns: repeat(3, 1fr);
  }

  .checklist{
    grid-template-columns: repeat(2, 1fr);
  }

  .steps{
    grid-template-columns: repeat(2, 1fr);
  }

  .tile-grid.four{
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner{
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
  }

  .footer-inner{
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
  }
}

@media (min-width: 1060px){
  .tile-grid.four{
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Book Demo: form + embed ---- */

.form-wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.form-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.field label{
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(234,240,255,.92);
  margin: 0 0 6px 0;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(7,11,20,.55);
  color: rgba(234,240,255,.92);
  outline: none;
}

.field textarea{ resize: vertical; min-height: 110px; }

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(234,240,255,.45);
}

.hint{
  margin: 6px 0 0 0;
  color: rgba(234,240,255,.58);
  font-size: 12px;
}

.is-invalid{
  border-color: rgba(255,130,130,.55) !important;
  box-shadow: 0 0 0 4px rgba(255,130,130,.12);
}

.field-wide{ grid-column: 1 / -1; }

.form-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.side-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  padding: 16px;
}

.side-card h3{
  margin: 0 0 12px 0;
  color: #F4F7FF;
  letter-spacing: -0.01em;
}

.embed-wrap{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

.booking-iframe{
  width: 100%;
  height: 980px;
  border: 0;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255,255,255,.02);
}

@media (min-width: 900px){
  .form-wrap{
    grid-template-columns: 1.2fr .8fr;
  }
  .form-grid{
    grid-template-columns: 1fr 1fr;
  }
  .booking-iframe{
    height: 920px;
  }
}

@media (max-width: 600px){
  .booking-iframe{
    height: 1100px;
  }
}
/* ---- Book Demo: form + gated scheduling + embed status ---- */

.form-wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.form-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.field label{
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(234,240,255,.92);
  margin: 0 0 6px 0;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(234,240,255,.14);
  background: rgba(7,11,20,.55);
  color: rgba(234,240,255,.92);
  outline: none;
}

.field textarea{ resize: vertical; min-height: 110px; }

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(234,240,255,.45);
}

.hint{
  margin: 6px 0 0 0;
  color: rgba(234,240,255,.58);
  font-size: 12px;
}

.is-invalid{
  border-color: rgba(255,130,130,.55) !important;
  box-shadow: 0 0 0 4px rgba(255,130,130,.12);
}

.field-wide{ grid-column: 1 / -1; }

.form-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.side-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  padding: 16px;
}

.side-card h3{
  margin: 0 0 12px 0;
  color: #F4F7FF;
  letter-spacing: -0.01em;
}

/* Scheduler embed */
.embed-wrap{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,240,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

.embed-status{
  margin: 0 0 10px 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(234,240,255,.10);
  background: rgba(255,255,255,.02);
  color: rgba(234,240,255,.78);
  font-weight: 700;
  font-size: 13px;
}

.embed-status.ok{
  border-color: rgba(21,176,167,.25);
  background: rgba(21,176,167,.08);
  color: rgba(234,240,255,.92);
}

.embed-status.warn{
  border-color: rgba(255,200,120,.25);
  background: rgba(255,200,120,.08);
  color: rgba(234,240,255,.92);
}

.booking-iframe{
  width: 100%;
  height: 980px;
  border: 0;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255,255,255,.02);
}

@media (min-width: 900px){
  .form-wrap{
    grid-template-columns: 1.2fr .8fr;
  }
  .form-grid{
    grid-template-columns: 1fr 1fr;
  }
  .booking-iframe{
    height: 920px;
  }
}

@media (max-width: 600px){
  .booking-iframe{
    height: 1100px;
  }
}
.hipaa-line {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

