/* CONTEXT[PODS] */

:root {
  --bg: #fdfdfc;
  --bg2: #f7f7f5;
  --ink: #1d1d1b;
  --ink2: #52524e;
  --ink3: #7d7d78;
  --line: #e2e2df;
  --accent: #3b9fe7;
  --f: 'Inter', system-ui, sans-serif;
  --fh: 'EB Garamond', 'Georgia', serif;
  --w: 960px;
  --wn: 600px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f); font-size: 15px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.w { max-width: var(--w); margin: 0 auto; padding: 0 2rem; }
.wn { max-width: var(--wn); margin: 0 auto; padding: 0 2rem; }

h1, h2, h3 { font-family: var(--fh); letter-spacing: -0.01em; }
h1 { font-size: 2.75rem; line-height: 1.15; font-weight: 500; }
h2 { font-size: 1.625rem; line-height: 1.25; margin-bottom: 0.75rem; font-weight: 500; }
h3 { font-size: 1.05rem; line-height: 1.4; font-weight: 500; }
p { color: var(--ink2); line-height: 1.7; }

.tag { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; display: block; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 99; padding: 14px 0; background: rgba(253,253,252,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
nav .w { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--fh); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.logo span { color: var(--accent); font-style: italic; }
.nav-r { display: flex; gap: 24px; align-items: center; }
.nav-r a { font-size: 13px; color: var(--ink3); transition: color 0.15s; }
.nav-r a:hover { color: var(--ink); }
.nav-cta { font-size: 13px; padding: 6px 14px; background: var(--accent); color: #fff !important; border-radius: 4px; transition: opacity 0.15s; }
.nav-cta:hover { opacity: 0.9; }
.nav-tog { display: none; background: none; border: none; color: var(--ink); font-size: 20px; cursor: pointer; }

/* BTN */
.btn { display: inline-block; padding: 10px 22px; font-size: 13px; font-weight: 500; font-family: var(--f); border-radius: 4px; transition: all 0.15s; cursor: pointer; border: none; }
.btn-p { background: var(--accent); color: #fff; }
.btn-p:hover { opacity: 0.9; }
.btn-s { background: none; color: var(--ink); border: 1px solid var(--line); }
.btn-s:hover { border-color: var(--ink3); }

section { padding: 80px 0; }

/* HERO — split layout */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding-top: 60px; gap: 48px; max-width: var(--w); margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.hero-left { max-width: 440px; }
.hero-left h1 { margin-bottom: 16px; }
.hero-sub { max-width: 400px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 8px; }
.hero-foot { font-size: 13px; color: var(--ink3); margin-top: 48px; font-style: italic; }

/* Hero right — animated file tree */
.hero-right {
  background: var(--ink);
  border-radius: 8px;
  padding: 28px;
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #a3a39e;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: 'your-system/';
  display: block;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.tree-line { opacity: 0; animation: treeFade 0.3s ease forwards; }
.tree-line span.file { color: #e8e8e5; }
.tree-line span.dir { color: var(--accent); }
.tree-line span.comment { color: #555; font-style: italic; }
.tree-line:nth-child(1) { animation-delay: 0.3s; }
.tree-line:nth-child(2) { animation-delay: 0.5s; }
.tree-line:nth-child(3) { animation-delay: 0.7s; }
.tree-line:nth-child(4) { animation-delay: 0.9s; }
.tree-line:nth-child(5) { animation-delay: 1.1s; }
.tree-line:nth-child(6) { animation-delay: 1.3s; }
.tree-line:nth-child(7) { animation-delay: 1.5s; }
.tree-line:nth-child(8) { animation-delay: 1.7s; }
.tree-line:nth-child(9) { animation-delay: 1.9s; }
.tree-line:nth-child(10) { animation-delay: 2.1s; }
.tree-line:nth-child(11) { animation-delay: 2.3s; }

@keyframes treeFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cursor blink at end */
.tree-cursor { display: inline-block; width: 7px; height: 14px; background: var(--accent); animation: blink 1s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* WHAT IS A POD */
.pod-explain { max-width: 600px; }
.pod-explain p { margin-bottom: 12px; font-size: 15px; }

/* WHY YOU NEED ONE */
.why-pod-sec { background: var(--bg2); }
.why-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.why-c { padding: 24px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; }
.why-c h3 { margin-bottom: 6px; }
.why-c p { font-size: 14px; }

/* WHAT WE DO */
.section-intro { max-width: 520px; margin-bottom: 32px; }
.what-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.what-c { padding: 24px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; }
.what-n { font-size: 28px; font-weight: 600; color: var(--line); line-height: 1; margin-bottom: 12px; }
.what-c h3 { margin-bottom: 6px; }
.what-c p { font-size: 14px; }

/* WHAT YOU CAN DO */
.can-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.can-c { padding: 24px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; }
.can-q { font-family: var(--fh); font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; font-style: italic; }
.can-c > p:last-child { font-size: 14px; }

/* WHO IT'S FOR */
.uc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.uc-item { padding: 24px; background: var(--bg2); border: 1px solid var(--line); border-radius: 6px; }
.uc-item h3 { margin-bottom: 6px; }
.uc-item p { font-size: 14px; }

/* PARTNERS */
.partners-sec { background: var(--bg2); }
.partners-sec .section-intro { max-width: 560px; }
.partners-sec a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* Green band break */
.band {
  background: var(--accent);
  color: #fff;
  padding: 60px 0;
}
.band h2, .band p, .band .tag, .band li, .band h3 { color: #fff; }
.band .tag { color: rgba(255,255,255,0.5); }
.band p { color: rgba(255,255,255,0.75); }
.band .hi { color: #fff; font-weight: 500; }
.band .port-l li { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.band .btn-s { border-color: rgba(255,255,255,0.3); color: #fff; }
.band .btn-s:hover { border-color: #fff; }

/* SECTION ICONS */
.sec-icon { width: 40px; height: 40px; margin-bottom: 14px; display: block; }
.stp-icon { width: 36px; height: 36px; margin-bottom: 12px; display: block; }

/* STEPS FLOW LINE */
.steps-flow { margin-top: 32px; margin-bottom: -8px; padding: 0 16%; }
.flow-line { width: 100%; height: 8px; display: block; }

/* PROBLEM */
#problem { background: var(--bg2); border-top: 1px solid var(--line); }
.prob-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 32px; }
.prob-c h3 { margin-bottom: 6px; }
.prob-c p { font-size: 14px; }

/* SERVICES */
.svc { background: var(--bg2); }
.svc-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.svc-c { padding: 24px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; }
.svc-c h3 { margin-bottom: 6px; }
.svc-c > p { font-size: 14px; margin-bottom: 16px; }
.svc-c li { font-size: 13px; color: var(--ink2); padding: 5px 0; border-bottom: 1px solid var(--line); }
.svc-c li:last-child { border-bottom: none; }

/* PRICING */
.pricing-sec { background: var(--bg2); }

/* PORTABILITY */
.port-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.port-text p { margin-bottom: 12px; font-size: 15px; }
.port-text .hi { font-weight: 500; color: #fff; font-size: 15px; }
.port-l li { font-size: 14px; color: var(--ink2); padding: 10px 0; border-bottom: 1px solid var(--line); }

/* USE CASES (legacy) */
.usecases { background: var(--bg); }

/* STEPS */
.steps-sec { background: var(--bg2); }
.steps-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 32px; }
.stp-n { font-size: 32px; font-weight: 600; color: var(--line); display: block; margin-bottom: 12px; line-height: 1; }
.stp h3 { margin-bottom: 6px; }
.stp p { font-size: 14px; color: var(--ink2); }

/* OFFERINGS */
.off-intro { max-width: 440px; margin-bottom: 4px; }
.off-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.off-c { padding: 24px; border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; }
.off-c { background: var(--bg2); }
.off-c--featured { border-color: var(--accent); background: var(--bg); }
.off-price { font-size: 1.125rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.off-c h3 { font-family: var(--fh); font-size: 1.2rem; margin-bottom: 2px; }
.off-sub { font-size: 13px; color: var(--ink3); margin-bottom: 16px; }
.off-c > p { font-size: 14px; margin-bottom: 16px; }
.off-c ul { margin-bottom: 20px; flex-grow: 1; }
.off-c li { font-size: 13px; color: var(--ink2); padding: 5px 0; border-bottom: 1px solid var(--line); }
.off-c li:last-child { border-bottom: none; }
.off-c .btn { text-align: center; width: 100%; }
.btn-personal { background: var(--accent); color: #fff; }
.btn-personal:hover { opacity: 0.9; }
.btn-biz { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-biz:hover { background: var(--accent); color: #fff; }

/* ABOUT */
.abt { background: var(--bg2); }
.abt-in { max-width: 480px; }
.abt-in p { margin-bottom: 10px; font-size: 15px; }

/* CTA */
.cta-sec { text-align: center; border-top: 1px solid var(--line); }
.cta-sec > .w > p { max-width: 380px; margin: 0 auto 24px; }
.cta-links { display: flex; gap: 24px; justify-content: center; margin-top: 20px; }
.cta-links a { font-size: 13px; color: var(--ink3); }
.cta-links a:hover { color: var(--ink); }

/* FOOTER */
footer { padding: 20px 0; border-top: 1px solid var(--line); }
footer .w { display: flex; justify-content: space-between; align-items: center; }
footer p { font-size: 11px; color: var(--ink3); }
footer a { color: var(--ink3); }

/* BLOG */
.bh { padding-top: 100px; padding-bottom: 0; }
.bh h1 { font-size: 1.5rem; line-height: 1.3; max-width: 520px; }

/* Featured post */
.bl-featured { padding: 32px 0; }
.bf-card { display: block; padding: 32px; border: 1px solid var(--accent); border-radius: 6px; background: var(--bg); transition: box-shadow 0.2s; }
.bf-card:hover { box-shadow: 0 2px 12px rgba(59,159,231,0.1); }
.bf-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.bf-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 2px 8px; border-radius: 3px; }
.bf-date { font-size: 11px; color: var(--ink3); letter-spacing: 0.03em; text-transform: uppercase; }
.bf-card h2 { font-size: 1.35rem; margin-bottom: 8px; }
.bf-card p { font-size: 14px; color: var(--ink2); margin-bottom: 12px; }
.bf-read { font-size: 13px; color: var(--accent); font-weight: 500; }

/* Blog grid */
.bl-grid-sec { padding: 0 0 80px; }
.bl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.bg-card { display: block; padding: 24px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); transition: border-color 0.15s; }
.bg-card:hover { border-color: var(--accent); }
.bg-card:hover h3 { color: var(--accent); }
.bg-date { font-size: 10px; color: var(--ink3); letter-spacing: 0.03em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.bg-card h3 { font-size: 1rem; margin-bottom: 6px; transition: color 0.15s; }
.bg-card p { font-size: 13px; color: var(--ink2); line-height: 1.5; }

/* POST */
.post { padding-top: 100px; }
.post-h { margin-bottom: 32px; }
.post-m { font-size: 11px; color: var(--ink3); letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 10px; display: flex; gap: 16px; }
.post-b h2 { margin-top: 28px; margin-bottom: 10px; font-size: 1.25rem; }
.post-b p { margin-bottom: 16px; line-height: 1.75; }
.post-b strong { color: var(--ink); font-weight: 500; }
.post-b a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.post-b ul, .post-b ol { margin-bottom: 16px; padding-left: 20px; }
.post-b li { color: var(--ink2); margin-bottom: 6px; list-style: disc; line-height: 1.7; }
.post-b ol li { list-style: decimal; }
.post-b blockquote { border-left: 2px solid var(--accent); padding-left: 16px; margin: 20px 0; color: var(--ink2); font-size: 15px; line-height: 1.7; }
.post-b code { font-size: 0.85em; background: var(--bg2); padding: 2px 5px; border-radius: 3px; }
.post-b pre { background: var(--bg2); border: 1px solid var(--line); padding: 16px; overflow-x: auto; margin-bottom: 16px; border-radius: 4px; }
.post-b pre code { background: none; padding: 0; }
.post-back { display: inline-block; margin-top: 32px; font-size: 13px; color: var(--ink3); }
.post-back:hover { color: var(--accent); }

@media (max-width: 768px) {
  .w, .wn { padding: 0 24px; max-width: 480px; }
  h1 { font-size: 1.65rem; line-height: 1.2; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 0.95rem; }
  p { font-size: 14px; }
  section { padding: 44px 0; }
  .band { padding: 44px 0; }
  .tag { font-size: 10px; margin-bottom: 0.5rem; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 24px 40px;
    max-width: 480px;
    margin: 0 auto;
    gap: 24px;
  }
  .hero-left { max-width: 100%; }
  .hero-sub { font-size: 14px; margin-bottom: 20px; }
  .hero-right { padding: 16px; font-size: 11px; line-height: 1.6; border-radius: 6px; }
  .hero-foot { margin-top: 28px; font-size: 12px; }

  /* Nav */
  .nav-r { display: none; }
  .nav-r.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px;
    gap: 12px;
  }
  .nav-r.open a { font-size: 14px; color: var(--ink); padding: 8px 0; }
  .nav-r.open .nav-cta { text-align: center; display: block; padding: 10px; font-size: 14px; }
  .nav-tog { display: block; }

  /* Grids */
  .prob-g { grid-template-columns: 1fr; gap: 16px; }
  .prob-c p { font-size: 13px; }
  .svc-g, .off-g, .uc-g, .what-g, .uc-list, .why-g, .can-g { grid-template-columns: 1fr; gap: 12px; }
  .why-c { padding: 16px; }
  .why-c p { font-size: 13px; }
  .pod-explain p { font-size: 14px; }
  .steps-g { grid-template-columns: 1fr; gap: 20px; }
  .steps-flow { display: none; }
  .port-inner { grid-template-columns: 1fr; gap: 20px; }

  /* Cards */
  .svc-c, .off-c, .what-c, .uc-item, .can-c { padding: 16px; }
  .can-c > p:last-child { font-size: 13px; }
  .svc-c > p, .off-c > p { font-size: 13px; }
  .svc-c li, .off-c li { font-size: 12px; padding: 4px 0; }
  .what-c p, .uc-item p { font-size: 13px; }
  .what-n { font-size: 22px; margin-bottom: 8px; }
  .off-sub { font-size: 12px; margin-bottom: 12px; }
  .off-intro { font-size: 14px; }

  /* Steps */
  .stp-n { font-size: 24px; margin-bottom: 8px; }
  .stp p { font-size: 13px; }

  /* Portability */
  .port-text p { font-size: 14px; }
  .port-text .hi { font-size: 14px; }
  .port-l li { font-size: 13px; padding: 8px 0; }

  /* About */
  .abt-in p { font-size: 14px; }

  /* CTA */
  .cta-sec > .w > p { font-size: 14px; }

  /* Buttons */
  .hero-btns { flex-direction: column; gap: 8px; }
  .hero-btns .btn { text-align: center; width: 100%; padding: 12px; }
  .btn { font-size: 13px; padding: 10px 20px; }
  .off-c .btn { padding: 12px; }

  /* Footer */
  footer .w { flex-direction: column; gap: 4px; text-align: center; }
  footer p { font-size: 10px; }

  /* Blog */
  .bh { padding-top: 72px; }
  .bh h1 { font-size: 1.2rem; }
  .bl-grid { grid-template-columns: 1fr; gap: 12px; }
  .bf-card { padding: 20px; }
  .bf-card h2 { font-size: 1.15rem; }
  .bg-card { padding: 16px; }
  .bg-card h3 { font-size: 0.95rem; }
  .bg-card p { font-size: 12px; }
  .post { padding-top: 72px; }
  .post-b p { font-size: 14px; }
  .post-b h2 { font-size: 1.1rem; }
}

@media (max-width: 400px) {
  h1 { font-size: 1.4rem; }
  .hero { padding: 72px 16px 36px; }
  .hero-right { font-size: 10px; padding: 14px; }
  .hero-right::before { font-size: 10px; }
  .stp-n { font-size: 20px; }
  .what-c, .uc-item { padding: 14px; }
}

/* ========================================
   START / DISCOVERY FORM
   ======================================== */

.start-body { background: var(--bg); }

.start-nav { padding: 14px 0; border-bottom: 1px solid var(--line); }
.start-nav .w { display: flex; align-items: center; }

.start-main { min-height: calc(100vh - 100px); display: flex; align-items: flex-start; justify-content: center; padding: 80px 0 80px; }

.start-wrap { max-width: 620px; width: 100%; padding: 0 2rem; }

.start-header { margin-bottom: 36px; }
.start-header h1 { font-size: 2rem; margin-bottom: 10px; }
.start-header p { font-size: 15px; color: var(--ink2); max-width: 520px; }

/* Progress bar */
.start-progress { margin-bottom: 40px; }
.prog-bar { height: 2px; background: var(--line); border-radius: 2px; margin-bottom: 12px; overflow: hidden; }
.prog-fill { height: 100%; background: var(--accent); width: 0; transition: width 0.4s ease; border-radius: 2px; }
.prog-steps { display: flex; gap: 4px; }
.prog-step {
  flex: 1;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 4px;
  font-size: 11px;
  font-family: var(--f);
  color: var(--ink3);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.prog-step.active { border-color: var(--accent); color: var(--accent); font-weight: 500; }
.prog-step.done { border-color: var(--line); color: var(--ink); background: var(--bg2); }

/* Form sections */
.form-section { display: none; }
.form-section.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fs-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.form-section h2 { font-size: 1.35rem; margin-bottom: 8px; }
.fs-sub { font-size: 14px; color: var(--ink2); margin-bottom: 24px; }
.form-section h2 + .field { margin-top: 28px; }
.fs-sub + .field { margin-top: 0; }

/* Fields */
.field { margin-bottom: 24px; }
.field > label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.field .opt { font-weight: 400; color: var(--ink3); }

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--f);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s;
  line-height: 1.5;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}
textarea { resize: vertical; }
::placeholder { color: var(--ink3); font-size: 13px; }

/* Radio & checkbox cards */
.radio-group, .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.radio-group--stack {
  flex-direction: column;
}
.radio-card, .check-card {
  position: relative;
  cursor: pointer;
}
.radio-card input, .check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card span, .check-card span {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.15s;
  color: var(--ink2);
  line-height: 1.4;
}
.radio-card input:checked + span,
.check-card input:checked + span {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59, 159, 231, 0.04);
}
.radio-card:hover span,
.check-card:hover span {
  border-color: var(--ink3);
}
.radio-group--stack .radio-card span {
  display: block;
  width: 100%;
}
.radio-card span strong {
  color: var(--ink);
}

/* Form nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.btn-submit { padding: 12px 28px; font-size: 14px; }

/* Success */
.start-success { text-align: center; padding: 60px 0; }
.start-success h2 { font-size: 1.5rem; margin-bottom: 12px; }
.start-success p { margin-bottom: 16px; max-width: 420px; margin-left: auto; margin-right: auto; }
.start-success .btn { margin-top: 8px; padding: 14px 32px; font-size: 15px; }
.start-success-note { font-size: 13px; color: var(--ink3); margin-top: 24px; font-style: italic; }

/* Footer */
.start-footer { padding: 16px 0; border-top: 1px solid var(--line); }
.start-footer p { font-size: 11px; color: var(--ink3); text-align: center; }

/* START — MOBILE */
@media (max-width: 768px) {
  .start-wrap { padding: 0 24px; }
  .start-header h1 { font-size: 1.5rem; }
  .start-header p { font-size: 14px; }
  .start-main { padding: 32px 0 60px; }
  .prog-step { font-size: 10px; padding: 6px 2px; }
  .form-section h2 { font-size: 1.15rem; }
  .field > label { font-size: 13px; }
  input[type="text"], input[type="email"], textarea { font-size: 14px; padding: 10px 12px; }
  .radio-card span, .check-card span { font-size: 12px; padding: 7px 10px; }
  .check-group { gap: 4px; }
}

@media (max-width: 400px) {
  .start-header h1 { font-size: 1.3rem; }
  .prog-steps { flex-wrap: wrap; }
  .prog-step { flex: none; font-size: 10px; }
}

/* ========================================
   BOOK A CALL PAGE
   ======================================== */

.book-wrap { max-width: 720px; width: 100%; padding: 0 2rem; }

.book-header { margin-bottom: 40px; }
.book-header h1 { font-size: 2rem; margin-bottom: 10px; }
.book-header p { font-size: 15px; color: var(--ink2); }

.book-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }

.book-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  position: relative;
}
.book-card--rec {
  border-color: var(--accent);
  background: var(--bg);
}
.book-rec {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.book-card h2 { font-size: 1.25rem; margin-bottom: 10px; }
.book-card > p { font-size: 14px; color: var(--ink2); margin-bottom: 16px; line-height: 1.6; }
.book-card ul { margin-bottom: 20px; }
.book-card li {
  font-size: 13px;
  color: var(--ink2);
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.book-card li:last-child { border-bottom: none; }
.book-card .btn { width: 100%; text-align: center; }
.book-note { font-size: 12px; color: var(--ink3); margin-top: 10px; text-align: center; font-style: italic; }

@media (max-width: 768px) {
  .book-wrap { padding: 0 24px; max-width: 480px; }
  .book-header h1 { font-size: 1.5rem; }
  .book-options { grid-template-columns: 1fr; gap: 16px; }
  .book-card { padding: 24px; }
  .book-card h2 { font-size: 1.1rem; }
}
