
:root {
  --ink: #101828;
  --muted: #5b6475;
  --soft: #f6f2ea;
  --paper: #fffaf1;
  --night: #11151f;
  --wine: #6f1d3b;
  --coral: #f46d4f;
  --gold: #f4bd4c;
  --teal: #3aa99e;
  --line: rgba(16,24,40,.14);
  --shadow: 0 24px 70px rgba(17,21,31,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255,250,241,.86);
  border-bottom: 1px solid rgba(16,24,40,.09);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--wine), var(--coral) 55%, var(--gold));
  box-shadow: 0 12px 30px rgba(111,29,59,.28);
}
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--wine); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(17,21,31,.10); }
.btn.primary { background: var(--night); color: white; border-color: var(--night); }
.btn.primary:hover { background: var(--wine); border-color: var(--wine); }
.btn.coral { background: var(--coral); color: white; border-color: var(--coral); }
.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(30px, 5vw, 70px) clamp(18px, 4vw, 56px) 28px;
  background:
    radial-gradient(circle at 88% 14%, rgba(244,189,76,.22), transparent 28%),
    radial-gradient(circle at 10% 86%, rgba(58,169,158,.14), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #f6f2ea 100%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(111,29,59,.18);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(111,29,59,.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(36px, 4.9vw, 58px); max-width: 780px; }
.hero-copy { max-width: 760px; }
.hero-copy .lead {
  margin: 22px 0 0;
  max-width: 660px;
  font-size: clamp(17px, 1.7vw, 20px);
  color: #394150;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; max-width: 640px; }
.trust-item { border-left: 3px solid var(--coral); padding-left: 12px; }
.trust-value { font-size: 26px; font-weight: 950; }
.trust-label { color: var(--muted); font-size: 13px; }
.studio {
  border: 1px solid rgba(16,24,40,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.studio-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--night);
  color: white;
}
.dots { display: flex; gap: 7px; align-items: center; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.dots span:nth-child(2) { background: var(--gold); }
.dots span:nth-child(3) { background: var(--teal); }
.studio-body { padding: 18px; display: grid; gap: 16px; }
.preview-wrap { position: relative; border-radius: 8px; overflow: hidden; background: var(--night); }
.preview-wrap img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.preview-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 8px;
  color: white;
  background: rgba(17,21,31,.72);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 7px; }
.field span { color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(16,24,40,.14);
  background: white;
  padding: 10px 12px;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 88px; resize: vertical; grid-column: 1 / -1; }
.upload-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px dashed rgba(111,29,59,.32);
  border-radius: 8px;
  background: rgba(111,29,59,.04);
  text-align: center;
  padding: 12px;
  cursor: pointer;
}
.upload-box input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-title { display: block; font-weight: 900; }
.upload-note { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.section { padding: 82px clamp(18px, 4vw, 56px); }
.section.alt { background: #f4eadf; }
.container { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker { color: var(--wine); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 950; margin: 0 0 10px; }
.section h2 { font-size: clamp(32px, 4vw, 54px); }
.section-desc { color: var(--muted); font-size: 18px; margin-top: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.card {
  border: 1px solid rgba(16,24,40,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  padding: 22px;
  box-shadow: 0 14px 42px rgba(17,21,31,.07);
}
.card.dark { background: var(--night); color: white; border-color: rgba(255,255,255,.12); }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p, .card li { color: var(--muted); }
.card.dark p, .card.dark li { color: rgba(255,255,255,.72); }
.icon-pill { width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(244,109,79,.12); color: var(--wine); font-weight: 950; }
.template-card { min-height: 154px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, rgba(17,21,31,.95), rgba(111,29,59,.86)); color: white; }
.template-card:nth-child(2n) { background: linear-gradient(145deg, rgba(16,24,40,.95), rgba(58,169,158,.82)); }
.template-card p { color: rgba(255,255,255,.74); }
.pricing-toolbar { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px 0 30px; flex-wrap: wrap; }
.billing-toggle { display: inline-grid; grid-template-columns: 1fr 1fr; padding: 4px; border-radius: 8px; border: 1px solid var(--line); background: white; }
.billing-chip { border: 0; border-radius: 7px; min-height: 40px; padding: 0 14px; background: transparent; color: var(--muted); font-weight: 900; cursor: pointer; }
.billing-chip.is-active { background: var(--night); color: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.pricing-card { position: relative; display: flex; flex-direction: column; border: 1px solid rgba(16,24,40,.12); border-radius: 8px; background: white; padding: 24px; cursor: pointer; }
.pricing-card.featured { background: var(--night); color: white; transform: translateY(-8px); box-shadow: var(--shadow); }
.pricing-badge { position: absolute; top: -13px; left: 22px; border-radius: 999px; padding: 5px 10px; background: var(--gold); color: var(--night); font-size: 12px; font-weight: 950; }
.pricing-name { font-size: 25px; font-weight: 950; }
.pricing-desc { min-height: 72px; color: var(--muted); }
.pricing-card.featured .pricing-desc, .pricing-card.featured .pricing-note, .pricing-card.featured li { color: rgba(255,255,255,.74); }
.pricing-price { margin-top: 12px; display: flex; align-items: baseline; gap: 6px; }
.price-currency { font-size: 24px; font-weight: 900; }
.price-amount { font-size: 52px; font-weight: 950; line-height: 1; }
.price-period { color: var(--muted); font-size: 14px; }
.pricing-note { color: var(--muted); font-size: 13px; min-height: 40px; }
.pricing-features { padding: 0; margin: 18px 0 22px; list-style: none; display: grid; gap: 10px; }
.pricing-feature { display: flex; gap: 9px; align-items: flex-start; }
.pricing-feature-icon { flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: rgba(58,169,158,.16); color: var(--teal); font-size: 12px; font-weight: 950; margin-top: 2px; }
.pricing-card.featured .pricing-feature-icon { background: rgba(244,189,76,.18); color: var(--gold); }
.btn-pricing { margin-top: auto; width: 100%; }
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(16,24,40,.12); border-radius: 8px; background: white; overflow: hidden; }
.faq-question { width: 100%; text-align: left; border: 0; background: white; padding: 18px 20px; font-weight: 950; cursor: pointer; display: flex; justify-content: space-between; gap: 12px; }
.faq-answer { padding: 0 20px 18px; color: var(--muted); }
.faq-item:not(.open) .faq-answer { display: none; }
.cta-band { background: var(--night); color: white; border-radius: 8px; padding: clamp(30px, 5vw, 54px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 620px; }
.footer { padding: 50px clamp(18px, 4vw, 56px); background: #0d1118; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; max-width: 1180px; margin: 0 auto; }
.footer a:hover { color: white; }
.footer-title { color: white; font-weight: 950; margin-bottom: 12px; }
.footer-links { display: grid; gap: 9px; font-size: 14px; }
.footer-bottom { max-width: 1180px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
body.launch-modal-open { overflow: hidden; }
.launch-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17,21,31,.68);
  backdrop-filter: blur(12px);
}
.launch-modal-overlay[hidden] { display: none; }
.launch-modal-shell {
  width: min(980px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: #fffaf1;
  box-shadow: 0 36px 100px rgba(0,0,0,.34);
  padding: clamp(20px, 4vw, 34px);
  position: relative;
}
.launch-modal-close { position: absolute; right: 14px; top: 14px; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line); background: white; cursor: pointer; font-weight: 950; }
.launch-modal-eyebrow { color: var(--wine); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 950; margin: 0 0 8px; }
.launch-modal-title { font-size: clamp(28px, 4vw, 46px); }
.launch-modal-desc { color: var(--muted); max-width: 720px; }
.launch-plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.launch-plan-card { text-align: left; border-radius: 8px; border: 1px solid rgba(16,24,40,.14); background: white; padding: 18px; cursor: pointer; }
.launch-plan-card.is-featured, .launch-plan-card.is-selected { border-color: var(--coral); box-shadow: 0 0 0 2px rgba(244,109,79,.22); }
.launch-plan-chip { display: inline-flex; border-radius: 999px; background: rgba(244,109,79,.12); color: var(--wine); padding: 4px 9px; font-size: 12px; font-weight: 950; }
.launch-plan-name { margin-top: 12px; font-size: 22px; font-weight: 950; }
.launch-plan-price { margin-top: 14px; display: flex; align-items: baseline; gap: 5px; }
.launch-plan-price-amount { font-size: 36px; font-weight: 950; }
.launch-plan-meta, .launch-plan-desc { color: var(--muted); font-size: 14px; }
.launch-plan-features { display: grid; gap: 7px; margin-top: 14px; color: #3b4555; font-size: 13px; }
.launch-plan-feature::before { content: "✓"; color: var(--teal); font-weight: 950; margin-right: 7px; }
.launch-modal-footer, .payment-summary-card { margin-top: 24px; border: 1px solid rgba(16,24,40,.12); border-radius: 8px; background: white; padding: 18px; }
.launch-modal-footer { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.launch-selection-label, .payment-summary-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.launch-selection-value, .payment-summary-value { font-weight: 950; }
.launch-footer-actions, .payment-actions, .launch-success-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.launch-primary-button, .launch-secondary-button {
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--night);
  cursor: pointer;
  font-weight: 950;
}
.launch-primary-button { background: var(--night); color: white; }
.launch-secondary-button { background: white; color: var(--ink); border-color: var(--line); }
.launch-link-button { display: inline-flex; align-items: center; justify-content: center; }
.launch-back-link { margin-bottom: 18px; border: 0; background: transparent; color: var(--wine); font-weight: 950; cursor: pointer; }
.payment-summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.payment-status { margin-top: 18px; color: var(--muted); }
.launch-success-card { text-align: center; max-width: 680px; margin: 0 auto; }
.launch-success-badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(58,169,158,.14); color: var(--teal); font-weight: 950; margin-bottom: 12px; }
.legal-article { max-width: 940px; margin: 0 auto; }
.legal-article .panel { border: 1px solid rgba(16,24,40,.12); border-radius: 8px; background: white; padding: 22px; margin: 16px 0; }
.keyword-hero { padding-top: 70px; padding-bottom: 44px; }
.keyword-body { max-width: 980px; margin: 0 auto; display: grid; gap: 18px; }
.keyword-body .panel { border: 1px solid rgba(16,24,40,.12); border-radius: 8px; background: white; padding: 24px; }
.keyword-body ul { margin: 10px 0 0; }
.keyword-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .grid-3, .grid-4, .pricing-grid, .launch-plan-grid, .footer-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .cta-band { grid-template-columns: 1fr; }
  .payment-summary-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { padding: 12px 16px; }
  .nav-actions .btn:not(.primary) { display: none; }
  .hero { padding-top: 34px; }
  .trust-row, .studio-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 16px; }
  .launch-modal-footer { align-items: stretch; flex-direction: column; }
  .payment-summary-grid { grid-template-columns: 1fr; }
}
