:root {
  --ink: #081711;
  --ink-soft: #21342c;
  --muted: #64746d;
  --paper: #f4f1e8;
  --paper-deep: #e9e4d7;
  --line: rgba(8, 23, 17, .13);
  --lime: #b9ef69;
  --lime-bright: #d1ff85;
  --green: #123c2e;
  --green-deep: #071a13;
  --white: #fffefa;
  --danger: #b63b33;
  --shadow: 0 30px 80px rgba(7, 26, 19, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f4eb 0%, var(--paper) 45%, #eee9de 100%);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}
button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
.ambient {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .16;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { background: #a4e849; top: -220px; right: -100px; }
.ambient-two { background: #f2b55e; bottom: 10%; left: -300px; }

.site-header, .section, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.04em;
}
.brand-mark {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background: var(--green-deep);
}
.brand-mark i {
  display: block;
  width: 3px;
  border-radius: 8px;
  background: var(--lime);
}
.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 16px; }
.brand-mark i:nth-child(3) { height: 12px; }
.brand-mark i:nth-child(4) { height: 6px; }
nav { display: flex; gap: 35px; font-size: 14px; font-weight: 600; }
nav a { color: var(--ink-soft); }
nav a:hover { color: #568a16; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-login { font-size: 13px; font-weight: 700; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 99px;
  padding: 15px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button-small { padding: 10px 17px; font-size: 13px; }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.button-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(7, 26, 19, .18);
}
.button-primary span:last-child { color: var(--lime); }
.button-light { background: var(--lime-bright); color: var(--green-deep); }

.hero {
  min-height: 650px;
  padding: 95px 0 105px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 55px;
}
.eyebrow, .kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 9px; color: #476057; }
.eyebrow span { width: 28px; height: 1px; background: #6f8d80; }
h1, h2, h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.055em;
}
h1 {
  margin-bottom: 23px;
  font-size: clamp(50px, 6.2vw, 82px);
  line-height: .98;
}
h1 em {
  color: #59821d;
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 25px; }
.text-link { font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--ink); }
.trust-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 12px;
}
.trust-row span + span { padding-left: 24px; border-left: 1px solid var(--line); }
.trust-row b { display: block; color: var(--ink); font-size: 17px; }

.voice-stage {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage-orbit {
  position: absolute;
  border: 1px solid rgba(18, 60, 46, .14);
  border-radius: 50%;
}
.orbit-one { width: 440px; height: 440px; }
.orbit-two { width: 330px; height: 330px; border-style: dashed; }
.voice-card {
  position: relative;
  width: min(430px, 100%);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  color: white;
  background: linear-gradient(145deg, #163e30, #071a13 72%);
  box-shadow: 0 35px 70px rgba(7,26,19,.3);
  transform: rotate(-2deg);
}
.voice-card-top, .voice-card-bottom { display: flex; align-items: center; }
.voice-card-top {
  gap: 8px;
  color: #abc1b8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px var(--lime); }
.duration { margin-left: auto; letter-spacing: .08em; }
.waveform {
  height: 145px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 0;
}
.waveform i, .mini-wave i {
  flex: 1;
  height: var(--h);
  min-height: 4px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--lime-bright), #67a827);
}
.voice-card-bottom { gap: 13px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.1); }
.fake-play {
  width: 39px; height: 39px; border-radius: 50%; border: 0; color: #0b2018; background: var(--lime); padding-left: 5px;
}
.voice-card-bottom strong { display: block; font-size: 13px; }
.voice-card-bottom small { color: #91a69e; font-size: 10px; }
.audio-tag { margin-left: auto; color: #8ca198; font-size: 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 99px; padding: 5px 8px; }
.floating-pill {
  position: absolute;
  z-index: 2;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 99px;
  background: rgba(255,254,250,.82);
  box-shadow: 0 12px 35px rgba(7,26,19,.12);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
}
.pill-one { top: 80px; right: -5px; }
.pill-two { bottom: 75px; left: 0; }

.demo-section {
  padding: 80px;
  border-radius: 32px;
  color: var(--white);
  background: var(--green-deep);
  box-shadow: var(--shadow);
}
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 40px; }
.section-heading h2, .workflow-copy h2 { margin: 8px 0 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.1; }
.section-heading > p { max-width: 390px; color: #9fb2aa; line-height: 1.7; }
.kicker { color: #86ad4d; }
.demo-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 21px;
  overflow: hidden;
  background: #0b231a;
}
.demo-form { padding: 31px; }
.demo-form label { display: block; margin: 0 0 8px; color: #b6c7c0; font-size: 12px; font-weight: 700; }
.textarea-wrap { position: relative; }
textarea, select {
  width: 100%;
  outline: none;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  color: white;
  background: rgba(4,16,12,.65);
}
textarea { min-height: 125px; resize: vertical; padding: 16px 17px 34px; line-height: 1.55; }
select { appearance: none; padding: 13px 40px 13px 14px; background-image: linear-gradient(45deg,transparent 50%,#89a097 50%),linear-gradient(135deg,#89a097 50%,transparent 50%); background-position: calc(100% - 17px) 18px,calc(100% - 12px) 18px; background-size: 5px 5px; background-repeat: no-repeat; }
textarea:focus, select:focus { border-color: rgba(185,239,105,.65); box-shadow: 0 0 0 3px rgba(185,239,105,.08); }
#charCounter { position: absolute; right: 13px; bottom: 11px; color: #779086; font-size: 10px; }
.control-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 15px; }
.custom-direction { margin-top: 15px; }
.custom-direction label span { color: #71877e; font-weight: 500; }
.custom-direction input {
  width: 100%;
  padding: 13px 14px;
  outline: none;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  color: white;
  background: rgba(4,16,12,.65);
}
.custom-direction input:focus { border-color: rgba(185,239,105,.65); box-shadow: 0 0 0 3px rgba(185,239,105,.08); }
.custom-direction small { display: block; margin-top: 7px; color: #6f887e; font-size: 10px; line-height: 1.5; }
.generate-button { width: 100%; margin-top: 19px; background: var(--lime); color: var(--green-deep); }
.button-icon { width: 23px; height: 23px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--green-deep); color: var(--lime) !important; font-size: 9px; }
.sample-policy { margin: 12px 0 0; text-align: center; color: #6f887e; font-size: 10px; }
.sample-status { min-height: 20px; margin-top: 8px; text-align: center; color: #b7cf95; font-size: 12px; }
.sample-status.error { color: #ff968e; }
.demo-result {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 30px;
  border-left: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 50% 42%, rgba(185,239,105,.1), transparent 42%),
    #081d15;
}
.result-label { color: #738c82; font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.empty-result, .audio-result { margin: auto; text-align: center; }
.empty-result strong, .audio-result strong { display: block; margin-top: 22px; font-size: 15px; }
.empty-result p { max-width: 250px; color: #70877e; font-size: 12px; line-height: 1.6; }
.mini-wave { width: 170px; height: 70px; display: flex; align-items: center; gap: 5px; margin: auto; opacity: .62; }
.result-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: auto; border-radius: 50%; color: var(--green-deep); background: var(--lime); font-size: 27px; }
.audio-result { width: 100%; }
.audio-result audio { width: 100%; margin: 22px 0 15px; }
.download-link { display: inline-block; color: var(--lime); font-size: 12px; font-weight: 700; border-bottom: 1px solid; }

.feature-section { padding: 130px 0 110px; }
.section-heading.compact { margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid article { position: relative; padding: 36px 35px 43px 0; }
.feature-grid article + article { padding-left: 35px; border-left: 1px solid var(--line); }
.feature-number { position: absolute; top: 18px; right: 19px; color: #a2ada8; font-size: 10px; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 50%; color: var(--lime); background: var(--green-deep); font-size: 24px; }
.feature-grid h3 { margin-bottom: 13px; font-size: 21px; }
.feature-grid p { max-width: 280px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.workflow-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
  padding: 80px 0 130px;
}
.workflow-copy p { max-width: 440px; color: var(--muted); line-height: 1.7; }
.workflow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.workflow-list li { display: flex; gap: 25px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.workflow-list li > span { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--lime); background: var(--green-deep); font-weight: 800; font-size: 12px; }
.workflow-list strong { font-family: "Manrope", sans-serif; }
.workflow-list p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }

.pricing-section { padding: 30px 0 110px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.38);
}
.price-card.featured {
  color: white;
  border-color: var(--green-deep);
  background: linear-gradient(145deg,#154333,#071a13);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}
.plan-name { color: #70847a; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.price-card.featured .plan-name { color: #a8c38e; }
.price-card h3 { margin: 28px 0 22px; font-size: 35px; }
.price-card h3 small { margin-left: 4px; color: var(--muted); font: 500 12px "DM Sans",sans-serif; letter-spacing: 0; }
.price-card.featured h3 small { color: #93a99f; }
.price-card > strong { font-size: 16px; }
.price-card > p { color: var(--muted); line-height: 1.7; }
.price-card.featured > p { color: #91a89e; }
.price-card .button { margin-top: auto; }
.popular-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 99px; color: var(--green-deep); background: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.pricing-note { margin: 26px 0 0; text-align: center; color: var(--muted); font-size: 12px; }
.lifetime-price-wrap { display: flex; justify-content: center; }
.lifetime-price-card { width: min(520px,100%); min-height: 430px; transform: none !important; }
.pricing-card {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  padding: 60px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(120deg, #123c2e, #082017);
}
.pricing-card h2 { margin: 10px 0 15px; font-size: clamp(32px, 4vw, 49px); }
.pricing-card p { margin: 0; color: #9ab0a7; }
footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
footer p { margin-right: auto; }
.footer-brand { color: var(--ink); }

.account-body, .dashboard-body { min-height: 100vh; background: var(--paper); }
.auth-shell { width: min(470px, calc(100% - 28px)); margin: 0 auto; padding: 50px 0; }
.auth-shell > .brand { margin-bottom: 35px; }
.auth-card { padding: 42px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.auth-card h1 { margin: 10px 0; font-size: 38px; }
.auth-card > p { color: var(--muted); line-height: 1.6; }
.auth-card form { display: grid; gap: 9px; margin-top: 28px; }
.auth-card label, .studio-panel label { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.auth-card input, .inline-form input {
  width: 100%; margin-bottom: 10px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; background: #faf9f4; outline: none;
}
.auth-card input:focus { border-color: #79a63f; box-shadow: 0 0 0 3px rgba(121,166,63,.1); }
.auth-switch { margin: 22px 0 0 !important; text-align: center; font-size: 13px; }
.auth-switch a { color: #56821e; font-weight: 700; }
.alert { margin: 18px 0; padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.alert.error { color: #8e2e28; background: #fee9e7; }
.alert.success { color: #245d3d; background: #e1f4e9; }
.app-header { height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(24px,calc((100vw - 1180px)/2)); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.55); }
.app-header > div { display: flex; align-items: center; gap: 20px; font-size: 13px; }
.app-header a:last-child { font-weight: 700; }
.app-layout, .admin-layout { width: min(1180px,calc(100% - 32px)); margin: auto; padding: 55px 0 90px; }
.dashboard-hero { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-bottom: 30px; }
.dashboard-hero h1, .admin-heading h1 { margin: 8px 0; font-size: clamp(38px,5vw,60px); }
.dashboard-hero p, .admin-heading p { color: var(--muted); }
.credit-card { min-width: 260px; padding: 25px; border-radius: 20px; color: white; background: var(--green-deep); }
.credit-card small, .credit-card span { display: block; color: #91a89e; font-size: 10px; }
.credit-card strong { display: block; margin: 8px 0; color: var(--lime); font: 800 34px "Manrope",sans-serif; }
.upgrade-banner { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 25px; padding: 22px 25px; border-radius: 17px; color: white; background: #174533; }
.upgrade-banner p { margin: 5px 0 0; color: #a6bcb3; font-size: 12px; }
.studio-grid { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 20px 60px rgba(7,26,19,.08); }
.studio-panel { padding: 34px; }
.studio-panel h2 { margin: 8px 0 25px; }
.studio-panel textarea, .studio-panel select { color: var(--ink); border-color: var(--line); background-color: #f8f6f0; }
.studio-panel .custom-direction input { color: var(--ink); border-color: var(--line); background: #f8f6f0; }
.studio-panel .custom-direction small { color: var(--muted); }
.studio-panel textarea { min-height: 190px; }
.studio-panel .textarea-wrap span { color: var(--muted); }
.studio-result { display: flex; min-height: 500px; flex-direction: column; padding: 32px; color: white; border-left: 1px solid var(--line); background: var(--green-deep); }
.studio-result > .empty-result, .studio-result > .audio-result { margin: auto; }
.history-section { padding-top: 70px; }
.history-list { border-top: 1px solid var(--line); }
.history-list article { display: flex; justify-content: space-between; align-items: center; gap: 25px; padding: 18px 5px; border-bottom: 1px solid var(--line); }
.history-list strong, .history-list small { display: block; }
.history-list small { margin-top: 5px; color: var(--muted); font-size: 11px; }
.history-list a { color: #56821e; font-size: 12px; font-weight: 800; }
.empty-copy { color: var(--muted); }
.payment-layout { width: min(1050px,calc(100% - 32px)); margin: auto; padding: 65px 0 90px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: start; }
.payment-intro h1 { margin: 12px 0 20px; font-size: clamp(44px,6vw,70px); }
.payment-intro > p { max-width: 450px; color: var(--muted); line-height: 1.7; }
.payment-amount { margin-top: 35px; padding: 25px; border-radius: 20px; color: white; background: var(--green-deep); }
.payment-amount small,.payment-amount span { display: block; color: #9db2a9; }
.payment-amount strong { display: block; margin: 8px 0; color: var(--lime); font: 800 36px "Manrope",sans-serif; }
.payment-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.qris-image { display: block; width: 100%; border: 1px solid var(--line); border-radius: 16px; }
.merchant-copy { padding: 18px 0 22px; text-align: center; }
.merchant-copy strong,.merchant-copy span { display: block; }
.merchant-copy span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.payment-form { display: grid; gap: 9px; padding-top: 20px; border-top: 1px solid var(--line); }
.payment-form label { font-size: 12px; font-weight: 700; }
.payment-form input { width: 100%; padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: #faf9f4; }
.payment-form small { color: var(--muted); line-height: 1.5; text-align: center; }
.payment-review { margin-bottom: 25px; }
.proof-link { color: #56821e; font-weight: 800; }
.payment-actions { display: flex; gap: 8px; }
.payment-actions button { border: 0; border-radius: 8px; padding: 9px 11px; color: white; background: var(--green); font-weight: 800; cursor: pointer; }
.payment-actions .reject-action { color: var(--danger); background: #fee5e3; }
.provider-admin { margin-bottom: 25px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.provider-admin .table-heading h2 { margin: 6px 0 0; }
.provider-note { padding: 15px 25px; color: var(--muted); background: #f8f7f1; font-size: 12px; line-height: 1.6; border-bottom: 1px solid var(--line); }
.provider-list { display: grid; }
.provider-item { display: grid; grid-template-columns: 80px minmax(210px,1fr) minmax(230px,.8fr) auto; gap: 18px; align-items: center; padding: 20px 25px; border-bottom: 1px solid var(--line); }
.provider-item.provider-disabled { opacity: .62; background: #faf9f5; }
.provider-order { text-align: center; }
.provider-order > strong { font: 800 19px "Manrope",sans-serif; }
.order-actions form { display: flex; justify-content: center; gap: 4px; margin-top: 7px; }
.order-actions button { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 6px; background: white; cursor: pointer; }
.order-actions button:disabled { opacity: .3; cursor: default; }
.provider-title { display: flex; align-items: center; gap: 9px; }
.provider-main code { display: block; margin: 7px 0 4px; color: #496158; font-size: 11px; }
.provider-main small { color: var(--muted); }
.provider-edit summary { cursor: pointer; color: #56821e; font-weight: 800; font-size: 12px; }
.provider-edit form { display: grid; gap: 6px; margin-top: 10px; }
.provider-edit label,.provider-add label { color: var(--muted); font-size: 10px; font-weight: 700; }
.provider-edit label span { font-weight: 400; }
.provider-edit input,.provider-add input { width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: 7px; background: white; }
.provider-edit button { justify-self: start; border: 0; color: #456d18; background: none; font-weight: 800; cursor: pointer; }
.provider-actions { display: flex; gap: 5px; }
.provider-actions button { border: 0; padding: 7px; color: #456d18; background: none; font-weight: 800; cursor: pointer; }
.provider-actions .danger-action { color: var(--danger); }
.provider-add { display: grid; grid-template-columns: .8fr 1.5fr auto; gap: 12px; align-items: end; padding: 22px 25px; background: #f4f8ec; }
.provider-add .button { padding: 11px 18px; }
.terms-layout { width: min(850px,calc(100% - 32px)); margin: auto; padding: 65px 0 100px; }
.terms-heading { margin-bottom: 32px; }
.terms-heading h1 { margin: 10px 0; font-size: clamp(42px,6vw,68px); }
.terms-heading p { color: var(--muted); }
.terms-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.terms-card article { padding: 24px 30px; border-bottom: 1px solid var(--line); }
.terms-card article h2 { margin: 0 0 9px; font-size: 18px; letter-spacing: -.03em; }
.terms-card article p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.terms-consent { padding: 30px; background: #f7f9f2; }
.terms-consent label { display: flex; gap: 13px; align-items: flex-start; font-weight: 700; line-height: 1.5; cursor: pointer; }
.terms-consent input { width: 19px; height: 19px; flex: 0 0 auto; accent-color: var(--green); }
.terms-consent .button { width: 100%; margin-top: 23px; }
.terms-consent small { display: block; margin-top: 10px; color: var(--muted); text-align: center; }
.terms-login { padding: 30px; text-align: center; background: #f7f9f2; }
.terms-login p { color: var(--muted); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; margin: 35px 0; }
.stats-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.stats-grid small, .stats-grid strong { display: block; }
.stats-grid small { color: var(--muted); }
.stats-grid strong { margin-top: 10px; font: 800 30px "Manrope",sans-serif; }
.admin-table-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.admin-security { margin: 0 0 24px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.admin-security summary { cursor: pointer; font-weight: 800; }
.admin-security form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: end; margin-top: 18px; }
.admin-security label { display: none; }
.admin-security input { padding: 12px; border: 1px solid var(--line); border-radius: 9px; }
.table-heading { display: flex; align-items: center; justify-content: space-between; padding: 22px 25px; border-bottom: 1px solid var(--line); }
.table-heading h2 { margin: 0; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 12px; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { color: var(--muted); background: #faf8f2; font-size: 10px; letter-spacing: .08em; }
td strong, td small { display: block; }
td small { margin-top: 4px; color: var(--muted); }
.inline-form { display: flex; gap: 6px; min-width: 210px; }
.inline-form select, .inline-form input { min-width: 100px; margin: 0; padding: 8px; color: var(--ink); border: 1px solid var(--line); border-radius: 7px; background: white; }
.inline-form button, .link-button { border: 0; color: #456d18; background: none; font-weight: 800; cursor: pointer; }
.status-badge { display: inline-block; padding: 5px 8px; border-radius: 99px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.status-badge.active { color: #23633d; background: #dff3e7; }
.status-badge.blocked { color: #8f3029; background: #fee5e3; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .voice-stage { min-height: 390px; }
  .demo-section { padding: 55px 30px; }
  .demo-shell, .workflow-section { grid-template-columns: 1fr; }
  .demo-result { border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .workflow-section { gap: 50px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .studio-grid { grid-template-columns: 1fr; }
  .payment-layout { grid-template-columns: 1fr; }
  .provider-item { grid-template-columns: 65px 1fr; }
  .provider-edit,.provider-actions { grid-column: 2; }
  .studio-result { border-left: 0; border-top: 1px solid var(--line); }
  .feature-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .site-header, .section, footer { width: min(100% - 24px, 1180px); }
  .site-header .button { display: none; }
  .header-actions .button { display: none; }
  h1 { font-size: 48px; }
  .hero { padding: 60px 0 70px; gap: 20px; }
  .hero-actions, .section-heading, .pricing-card, footer { align-items: flex-start; flex-direction: column; }
  .trust-row { gap: 12px; }
  .trust-row span + span { padding-left: 12px; }
  .voice-stage { min-height: 330px; }
  .orbit-one { width: 320px; height: 320px; }
  .orbit-two { width: 245px; height: 245px; }
  .voice-card { padding: 18px; }
  .floating-pill { display: none; }
  .demo-section { width: 100%; padding: 48px 12px; border-radius: 0; }
  .demo-form, .demo-result { padding: 22px 17px; }
  .control-grid { grid-template-columns: 1fr; }
  .feature-section { padding-top: 90px; }
  .workflow-section { padding-bottom: 90px; }
  .pricing-card { padding: 38px 25px; }
  .pricing-grid, .stats-grid { grid-template-columns: 1fr; }
  .admin-security form { grid-template-columns: 1fr; }
  .provider-item { grid-template-columns: 1fr; }
  .provider-order { text-align: left; }
  .order-actions form { justify-content: flex-start; }
  .provider-edit,.provider-actions { grid-column: auto; }
  .provider-add { grid-template-columns: 1fr; }
  .price-card { min-height: 340px; }
  .auth-card { padding: 30px 22px; }
  .dashboard-hero, .upgrade-banner { align-items: stretch; flex-direction: column; }
  .credit-card { min-width: 0; }
  footer { padding: 30px 0; gap: 13px; }
  footer p { margin: 0; }
}
