/* AI Made Useful — brand stylesheet
   Colors, type, and components shared across landing + thank-you pages. */

:root {
  --ink-navy: #1F2A44;
  --cream: #F7F3EA;
  --gold: #C8A96A;
  --mist: #D9E3E7;
  --charcoal: #20242C;
  --cta-blue: #2F6FED;
  --cta-blue-hover: #2257c9;
  --text: #20242C;
  --text-soft: #5b6577;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(31, 42, 68, 0.10);
  --shadow-lg: 0 24px 60px rgba(31, 42, 68, 0.16);
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink-navy);
  margin: 0 0 0.5em;
}

.serif { font-family: 'Source Serif 4', Georgia, serif; }

p { margin: 0 0 1em; }

a { color: var(--cta-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  padding: 22px 0;
  background: var(--cream);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; display: block; }
.brand-name { font-family: 'Manrope', Arial, sans-serif; font-weight: 800; font-size: 19px; color: var(--ink-navy); }
.tag-pill {
  font-size: 13px; color: var(--text-soft); border: 1px solid var(--mist);
  padding: 6px 12px; border-radius: 999px; background: var(--white);
}

/* Buttons */
.btn {
  display: inline-block; cursor: pointer; border: none;
  background: var(--cta-blue); color: #fff !important;
  font-family: 'Manrope', Arial, sans-serif; font-weight: 700; font-size: 17px;
  padding: 15px 28px; border-radius: 12px; text-decoration: none !important;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 18px rgba(47, 111, 237, 0.28);
}
.btn:hover { background: var(--cta-blue-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink-navy) !important; box-shadow: none;
  border: 1.5px solid var(--ink-navy);
}
.btn-ghost:hover { background: var(--ink-navy); color: #fff !important; }
.btn-gold { background: var(--gold); color: var(--ink-navy) !important; box-shadow: 0 6px 18px rgba(200,169,106,.32); }
.btn-gold:hover { background: #b9985a; }

/* Hero */
.hero { padding: 56px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; font-weight: 700;
  color: var(--gold); margin-bottom: 14px;
}
.hero h1 { font-size: clamp(34px, 5vw, 52px); }
.hero .lede { font-size: 20px; color: var(--text-soft); max-width: 38ch; }
.hero .hook {
  font-family: 'Source Serif 4', Georgia, serif; font-style: italic;
  font-size: 22px; color: var(--ink-navy); margin: 18px 0 22px;
}

/* Form card */
.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 32px; border: 1px solid rgba(31,42,68,0.06);
}
.card h3 { font-size: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink-navy); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--mist); border-radius: 10px;
  font-size: 16px; font-family: inherit; background: #fff; color: var(--text);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--cta-blue); box-shadow: 0 0 0 3px rgba(47,111,237,.15); }
.form-note { font-size: 12.5px; color: var(--text-soft); margin-top: 12px; }

/* Sections */
section.block { padding: 56px 0; }
section.alt { background: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 36px); }
.section-head p { color: var(--text-soft); font-size: 18px; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature {
  background: var(--cream); border: 1px solid var(--mist); border-radius: var(--radius);
  padding: 26px;
}
section.alt .feature { background: var(--cream); }
.feature .ico {
  width: 42px; height: 42px; border-radius: 11px; background: var(--ink-navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  color: var(--gold); font-size: 22px; font-weight: 800;
}
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.feature p { font-size: 15.5px; color: var(--text-soft); margin: 0; }

/* Two columns */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--mist); }
.panel h3 { font-size: 20px; }
.panel p { color: var(--text-soft); margin: 0; font-size: 16px; }

/* Try-this prompt box */
.prompt-box {
  background: var(--ink-navy); color: var(--cream); border-radius: var(--radius);
  padding: 30px; text-align: center; box-shadow: var(--shadow);
}
.prompt-box .label { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 700; }
.prompt-box .quote { font-family: 'Source Serif 4', Georgia, serif; font-size: 22px; line-height: 1.4; margin: 12px 0 0; color: #fff; }

/* Review CTA strip */
.review-cta { background: linear-gradient(135deg, #1F2A44 0%, #20242C 100%); color: var(--cream); border-radius: 22px; padding: 44px; text-align: center; }
.review-cta h2 { color: #fff; }
.review-cta p { color: rgba(247,243,234,.85); max-width: 60ch; margin-left: auto; margin-right: auto; }
.process-line { font-weight: 700; color: var(--gold); font-family: 'Manrope', sans-serif; }

/* About */
.about { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.about .avatar {
  width: 84px; height: 84px; border-radius: 50%; background: var(--gold); color: var(--ink-navy);
  display: flex; align-items: center; justify-content: center; font-family: 'Manrope'; font-weight: 800; font-size: 30px;
}

/* Footer */
.site-footer { background: var(--ink-navy); color: rgba(247,243,234,.75); padding: 40px 0; font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer strong { color: #fff; }
.site-footer a { color: var(--mist); }

/* Thank-you specific */
.ty-hero { text-align: center; padding: 64px 0 32px; }
.ty-check {
  width: 80px; height: 80px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  color: var(--ink-navy); font-size: 42px; font-weight: 800;
}
.deliver-list { list-style: none; padding: 0; margin: 20px 0; text-align: left; max-width: 360px; margin-left:auto; margin-right:auto; }
.deliver-list li { padding: 9px 0 9px 32px; position: relative; color: var(--cream); }
.deliver-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid, .features, .two-col, .about { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 24px; }
  .about .avatar { width: 64px; height: 64px; font-size: 24px; }
  .site-header .tag-pill { display: none; }
}
