/* Aoraforge — Stripe palette + Stripe-style modern minimal
 * Indigo slate brand (#0A2540), electric purple primary CTA (#635BFF),
 * cyan accent (#00D4FF), Inter font, sticky header, max-w-6xl,
 * gradient mesh hero, white surface with off-white alt sections. */

:root {
 /* Stripe palette */
 --slate: #0a2540; /* primary text + dark surfaces */
 --slate-700: #425466; /* secondary text */
 --slate-500: #697386; /* tertiary / faint text */
 --slate-300: #adbdcc; /* borders / dividers */
 --slate-200: #e3e8ee; /* hairlines */
 --slate-100: #f6f9fc; /* alt section background */

 --purple: #635bff; /* Stripe brand purple — primary CTA */
 --purple-600: #5851ec; /* hover */
 --purple-200: #d6d2ff; /* light tint */

 --cyan: #00d4ff; /* electric accent for highlights/gradient */
 --green: #00d924; /* success accent (used sparingly) */

 --white: #ffffff;

 /* Type */
 --serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; /* unused, kept for fallback */
 --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

 /* Type scale */
 --t-display: clamp(2.5rem, 5.5vw, 4.5rem);
 --t-h2: clamp(1.75rem, 3vw, 2.5rem);
 --t-h3: 1.25rem;
 --t-body: 1.05rem;
 --t-small: 0.875rem;
 --t-eyebrow: 0.78rem;

 /* Motion */
 --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
 --dur: 200ms;

 /* Shadow scale */
 --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.05);
 --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.07), 0 1px 3px rgba(10, 37, 64, 0.04);
 --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.10), 0 2px 6px rgba(10, 37, 64, 0.05);
 --shadow-cta: 0 4px 12px rgba(99, 91, 255, 0.32);
}

@import url('https://rsms.me/inter/inter.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
 background: var(--white);
 color: var(--slate);
 font-family: var(--sans);
 font-size: var(--t-body);
 line-height: 1.55;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 font-feature-settings: "ss01", "cv11";
}
@supports (font-variation-settings: normal) {
 body { font-family: "Inter var", var(--sans); }
}

a { color: var(--purple); text-decoration: none; transition: color var(--dur) var(--ease-out); }
a:hover { color: var(--purple-600); }

/* Strip italics globally — no editorial signal */
em, i { font-style: normal; }

/* ─────────────────────────────────────────────────────────────
 STICKY HEADER (compresses on scroll)
 ─────────────────────────────────────────────────────────── */
header {
 position: sticky;
 top: 0;
 z-index: 50;
 background: rgba(255, 255, 255, 0.85);
 backdrop-filter: saturate(180%) blur(12px);
 -webkit-backdrop-filter: saturate(180%) blur(12px);
 border-bottom: 1px solid transparent;
 transition: border-color var(--dur) var(--ease-out);
}
header.scrolled { border-bottom-color: var(--slate-200); }

.header-inner {
 max-width: 72rem;
 margin: 0 auto;
 padding: 1.1rem 1.5rem;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1.5rem;
}
.brand {
 font-weight: 700;
 font-size: 0.95rem;
 letter-spacing: -0.01em;
 color: var(--slate);
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
}
header nav {
 display: flex;
 align-items: center;
 gap: 1.5rem;
 font-size: var(--t-small);
}
header nav a {
 color: var(--slate-700);
 font-weight: 500;
}
header nav a:hover { color: var(--slate); }
.header-cta {
 display: inline-flex;
 align-items: center;
 padding: 0.55rem 1rem;
 background: var(--purple);
 color: white !important;
 border-radius: 999px;
 font-weight: 500;
 font-size: var(--t-small);
 transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.header-cta:hover { background: var(--purple-600); color: white !important; transform: translateY(-1px); }

@media (max-width: 768px) {
 header nav a:not(.header-cta) { display: none; }
}

/* ─────────────────────────────────────────────────────────────
 LAYOUT CONTAINERS
 ─────────────────────────────────────────────────────────── */
main { display: block; }
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }

@media (max-width: 768px) {
 section { padding: 3rem 0; }
}

/* ─────────────────────────────────────────────────────────────
 HERO with Stripe-style gradient mesh
 (indigo + purple + cyan, full-bleed top, blurred)
 ─────────────────────────────────────────────────────────── */
.hero {
 position: relative;
 padding: 6rem 0 5rem;
 overflow: hidden;
 isolation: isolate;
 background: linear-gradient(180deg, var(--slate-100) 0%, var(--white) 100%);
}
.hero::before {
 content: "";
 position: absolute;
 inset: -10% -10% auto auto;
 width: 80%;
 height: 90%;
 background:
 radial-gradient(45% 50% at 70% 20%, rgba(99, 91, 255, 0.22), transparent 65%),
 radial-gradient(40% 45% at 30% 50%, rgba(0, 212, 255, 0.18), transparent 65%),
 radial-gradient(50% 55% at 90% 80%, rgba(10, 37, 64, 0.10), transparent 70%);
 filter: blur(50px);
 z-index: -1;
 pointer-events: none;
}
.hero .eyebrow {
 font-size: var(--t-eyebrow);
 text-transform: uppercase;
 letter-spacing: 0.12em;
 color: var(--purple);
 font-weight: 600;
 margin: 0 0 1rem;
}
.hero h1 {
 font-size: var(--t-display);
 font-weight: 700;
 line-height: 1.05;
 letter-spacing: -0.025em;
 margin: 0 0 1.5rem;
 max-width: 22ch;
 color: var(--slate);
}
.hero .lede {
 font-size: clamp(1.05rem, 1.8vw, 1.25rem);
 line-height: 1.6;
 color: var(--slate-700);
 max-width: 38rem;
 margin: 0 0 2.5rem;
}
.hero-cta-row {
 display: flex;
 gap: 0.85rem;
 flex-wrap: wrap;
 align-items: center;
 margin: 0 0 2rem;
}
.hero .trust {
 font-size: var(--t-small);
 color: var(--slate-500);
 margin: 0;
}
.hero .trust a { color: var(--slate-700); border-bottom: 1px solid var(--slate-300); }
.hero .trust a:hover { border-color: var(--purple); color: var(--purple); }

/* ─────────────────────────────────────────────────────────────
 BUTTONS — Stripe pill, electric purple primary
 ─────────────────────────────────────────────────────────── */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.4rem;
 padding: 0.85rem 1.6rem;
 border-radius: 999px;
 font-weight: 500;
 font-size: 0.98rem;
 text-decoration: none !important;
 border: 1px solid transparent;
 cursor: pointer;
 transition: all var(--dur) var(--ease-out);
 white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
 background: var(--purple);
 color: white !important;
 box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
 background: var(--purple-600);
 color: white !important;
 box-shadow: 0 6px 18px rgba(99, 91, 255, 0.42);
}
.btn-secondary {
 background: white;
 color: var(--slate) !important;
 border-color: var(--slate-300);
 box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
 border-color: var(--purple);
 color: var(--purple) !important;
 background: white;
}
.btn-tier {
 width: 100%;
 background: white;
 color: var(--purple) !important;
 border-color: var(--slate-300);
 font-weight: 600;
}
.btn-tier:hover {
 background: var(--slate-100);
 border-color: var(--purple);
 color: var(--purple) !important;
}
.btn-tier-featured {
 background: var(--purple);
 color: white !important;
 border-color: var(--purple);
 box-shadow: var(--shadow-cta);
}
.btn-tier-featured:hover {
 background: var(--purple-600);
 color: white !important;
}

/* ─────────────────────────────────────────────────────────────
 SECTION HEADINGS
 ─────────────────────────────────────────────────────────── */
section h2 {
 font-size: var(--t-h2);
 font-weight: 700;
 letter-spacing: -0.02em;
 line-height: 1.15;
 margin: 0 0 1rem;
 color: var(--slate);
 max-width: 26ch;
}
.section-lede {
 font-size: 1.1rem;
 color: var(--slate-700);
 max-width: 36rem;
 margin: 0 0 3rem;
}
.section-eyebrow {
 font-size: var(--t-eyebrow);
 text-transform: uppercase;
 letter-spacing: 0.12em;
 color: var(--purple);
 font-weight: 600;
 margin: 0 0 1rem;
}

/* ─────────────────────────────────────────────────────────────
 "WHY" — narrative section
 ─────────────────────────────────────────────────────────── */
.why { background: var(--slate-100); }
.why p { color: var(--slate-700); font-size: 1.1rem; line-height: 1.65; max-width: 40rem; margin: 0 0 1.25rem; }
.why .credentials {
 margin-top: 2.5rem;
 padding-top: 1.5rem;
 border-top: 1px solid var(--slate-200);
 font-size: 0.95rem;
 color: var(--slate-500);
 font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
 HOW IT WORKS — numbered steps
 ─────────────────────────────────────────────────────────── */
.steps {
 list-style: none;
 padding: 0;
 margin: 3rem 0 0;
 display: grid;
 gap: 2rem;
 counter-reset: step;
}
@media (min-width: 900px) {
 .steps { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.steps li {
 counter-increment: step;
 position: relative;
 padding-top: 3rem;
}
.steps li::before {
 content: counter(step, decimal-leading-zero);
 position: absolute;
 top: 0;
 left: 0;
 font-size: 1rem;
 font-weight: 600;
 color: var(--purple);
 letter-spacing: 0.04em;
 font-variant-numeric: tabular-nums;
}
.steps li strong {
 display: block;
 font-size: 1.15rem;
 font-weight: 600;
 color: var(--slate);
 margin: 0 0 0.5rem;
}
.steps li {
 color: var(--slate-700);
 font-size: 1rem;
 line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
 PRICING — 5-card grid
 ─────────────────────────────────────────────────────────── */
.pricing { background: var(--white); }
.pricing-lede {
 text-align: center;
 color: var(--slate-700);
 font-size: 1.05rem;
 margin: 0 auto 3rem;
 max-width: 40rem;
}
.pricing-footnote {
 text-align: center;
 color: var(--slate-500);
 font-size: 0.875rem;
 margin: 2.5rem auto 0;
 max-width: 44rem;
 padding-top: 1.5rem;
 border-top: 1px solid var(--slate-200);
 line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
 FOR NEWSLETTERS sub-CTA (D)
 ─────────────────────────────────────────────────────────── */
.newsletter-cta {
 background: var(--slate-100);
 padding: 4rem 0;
 text-align: center;
}
.newsletter-cta .container-narrow { max-width: 44rem; }
.newsletter-cta h2 {
 margin: 0.5rem 0 1.25rem;
 color: var(--slate);
}
.newsletter-cta p {
 color: var(--slate-700);
 font-size: 1.05rem;
 line-height: 1.65;
 margin: 0 0 1.5rem;
}
.newsletter-cta-row {
 display: flex;
 gap: 0.75rem;
 justify-content: center;
 flex-wrap: wrap;
 margin-top: 2rem;
}
.tiers {
 display: grid;
 gap: 1.25rem;
 grid-template-columns: 1fr;
 align-items: stretch;
}
@media (min-width: 720px) and (max-width: 1199px) {
 .tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
 .tiers { grid-template-columns: repeat(5, 1fr); }
}

.tier {
 background: white;
 border: 1px solid var(--slate-200);
 border-radius: 12px;
 padding: 1.75rem 1.5rem;
 display: flex;
 flex-direction: column;
 transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
 position: relative;
}
.tier:hover {
 transform: translateY(-2px);
 border-color: var(--slate-300);
 box-shadow: var(--shadow-md);
}
.tier h3 {
 font-size: 1.05rem;
 font-weight: 600;
 color: var(--slate);
 margin: 0 0 0.5rem;
 letter-spacing: -0.01em;
}
.tier .price {
 font-size: 2rem;
 font-weight: 700;
 color: var(--slate);
 margin: 0.5rem 0 0.25rem;
 letter-spacing: -0.02em;
 font-variant-numeric: tabular-nums;
}
.tier .price small {
 font-size: 0.8rem;
 font-weight: 500;
 color: var(--slate-500);
 letter-spacing: 0.01em;
}
.tier-tag {
 font-size: var(--t-small);
 color: var(--slate-500);
 margin: 0.25rem 0 1.5rem;
 line-height: 1.4;
}
.tier ul {
 list-style: none;
 padding: 0;
 margin: 0 0 1.75rem;
 flex: 1;
}
.tier ul li {
 font-size: 0.92rem;
 color: var(--slate-700);
 padding: 0.45rem 0 0.45rem 1.4rem;
 position: relative;
 line-height: 1.5;
}
.tier ul li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.7rem;
 width: 0.85rem;
 height: 0.85rem;
 background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23635bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2,6.5 5,9.5 10,3'/></svg>") no-repeat center / contain;
}
.tier ul li strong { color: var(--slate); font-weight: 600; }
.tier-cta { margin: auto 0 0; }

/* Featured tier — Standard ($149) */
.tier-featured {
 border: 2px solid var(--purple);
 background: linear-gradient(180deg, rgba(99, 91, 255, 0.05) 0%, white 60%);
 box-shadow: var(--shadow-lg);
 transform: translateY(-4px);
}
.tier-featured:hover { transform: translateY(-6px); }
.tier > .badge {
 align-self: flex-start;
 display: inline-block;
 padding: 0.3rem 0.7rem;
 border-radius: 999px;
 font-size: 0.7rem;
 font-weight: 600;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 white-space: nowrap;
 margin-bottom: 0.6rem;
}
.tier-featured .badge {
 position: absolute;
 top: -0.85rem;
 left: 50%;
 align-self: auto;
 transform: translateX(-50%);
 background: var(--purple);
 color: white;
 font-size: 0.7rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.1em;
 padding: 0.35rem 0.75rem;
 border-radius: 999px;
 white-space: nowrap;
 box-shadow: var(--shadow-sm);
 margin-bottom: 0;
}

.custom-link {
 text-align: center;
 margin: 3rem auto 0;
 color: var(--slate-500);
 font-size: var(--t-small);
}

/* ─────────────────────────────────────────────────────────────
 FREE TIER SIGNUP
 ─────────────────────────────────────────────────────────── */
.signup { background: var(--slate-100); }
.signup-form {
 background: white;
 border: 1px solid var(--slate-200);
 border-radius: 12px;
 padding: 2rem;
 display: grid;
 gap: 0.85rem;
 margin: 2rem auto 0;
 max-width: 32rem;
 box-shadow: var(--shadow-sm);
}
.signup-form fieldset {
 border: 0;
 padding: 0;
 margin: 0 0 1rem;
 display: grid;
 gap: 0.85rem;
}
.signup-form fieldset legend {
 font-size: var(--t-eyebrow);
 text-transform: uppercase;
 letter-spacing: 0.1em;
 color: var(--slate-500);
 font-weight: 600;
 margin-bottom: 0.5rem;
 padding: 0;
}
.signup-form label {
 font-size: var(--t-small);
 color: var(--slate);
 font-weight: 500;
}
.signup-form input,
.signup-form textarea {
 font: inherit;
 font-size: 1rem;
 padding: 0.7rem 0.95rem;
 border: 1px solid var(--slate-300);
 border-radius: 8px;
 background: white;
 color: var(--slate);
 transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
 width: 100%;
}
.signup-form input:focus,
.signup-form textarea:focus {
 outline: none;
 border-color: var(--purple);
 box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.15);
}
.signup-form textarea {
 font-family: ui-monospace, "SF Mono", Menlo, monospace;
 font-size: 0.85rem;
 resize: vertical;
}
.signup-form button {
 margin-top: 0.5rem;
}
.form-meta {
 color: var(--slate-500);
 font-size: 0.82rem;
 margin: 0.5rem 0 0;
}

/* ─────────────────────────────────────────────────────────────
 FAQ
 ─────────────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list {
 display: grid;
 gap: 0;
 margin-top: 2rem;
 border-top: 1px solid var(--slate-200);
}
.faq details {
 border-bottom: 1px solid var(--slate-200);
 padding: 1.4rem 0;
}
.faq summary {
 cursor: pointer;
 font-weight: 600;
 font-size: 1.05rem;
 color: var(--slate);
 list-style: none;
 position: relative;
 padding-right: 2rem;
 transition: color var(--dur) var(--ease-out);
}
.faq summary:hover { color: var(--purple); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
 content: "";
 position: absolute;
 right: 0;
 top: 0.55rem;
 width: 14px;
 height: 14px;
 background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23697386' stroke-width='2' stroke-linecap='round'><path d='M3 7h8M7 3v8'/></svg>") no-repeat center / contain;
 transition: transform var(--dur) var(--ease-out);
}
.faq details[open] summary::after {
 background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23635bff' stroke-width='2' stroke-linecap='round'><path d='M3 7h8'/></svg>") no-repeat center / contain;
}
.faq details p {
 color: var(--slate-700);
 margin: 0.85rem 0 0;
 line-height: 1.65;
 font-size: 0.98rem;
 max-width: 48rem;
}

/* ─────────────────────────────────────────────────────────────
 FINAL CTA — Stripe-style dark slate panel with gradient mesh
 ─────────────────────────────────────────────────────────── */
.final-cta {
 background: linear-gradient(135deg, var(--slate) 0%, #1a3458 100%);
 color: white;
 text-align: center;
 padding: 6rem 0;
 position: relative;
 overflow: hidden;
}
.final-cta::before {
 content: "";
 position: absolute;
 inset: 0;
 background:
 radial-gradient(40% 60% at 30% 0%, rgba(99, 91, 255, 0.32), transparent 60%),
 radial-gradient(40% 60% at 70% 100%, rgba(0, 212, 255, 0.20), transparent 60%);
 pointer-events: none;
}
.final-cta h2 {
 color: white;
 font-size: clamp(2rem, 4vw, 3rem);
 max-width: 28ch;
 margin: 0 auto 1.25rem;
 position: relative;
}
.final-cta p {
 color: rgba(255, 255, 255, 0.85);
 max-width: 32rem;
 margin: 0 auto 2.5rem;
 font-size: 1.1rem;
 position: relative;
}
.final-cta .btn-primary {
 background: var(--purple);
 color: white !important;
 font-weight: 600;
 padding: 1rem 2rem;
 font-size: 1.05rem;
 box-shadow: 0 8px 24px rgba(99, 91, 255, 0.50);
 position: relative;
}
.final-cta .btn-primary:hover {
 background: var(--purple-600);
 color: white !important;
 box-shadow: 0 12px 32px rgba(99, 91, 255, 0.60);
}

/* ─────────────────────────────────────────────────────────────
 FOOTER
 ─────────────────────────────────────────────────────────── */
footer {
 background: var(--slate-100);
 border-top: 1px solid var(--slate-200);
 padding: 2.5rem 0;
 text-align: center;
}
footer p {
 color: var(--slate-500);
 font-size: var(--t-small);
 margin: 0;
}

/* ─────────────────────────────────────────────────────────────
 THANKS PAGES + closer
 ─────────────────────────────────────────────────────────── */
.closer { text-align: center; color: var(--slate-500); font-size: var(--t-small); padding: 2rem 0; }
.eyebrow {
 font-size: var(--t-eyebrow);
 text-transform: uppercase;
 letter-spacing: 0.12em;
 color: var(--slate-500);
 font-weight: 600;
 margin: 0 0 0.75rem;
}
