/* =====================================================================
   YK Travel Solutions — public start page.
   Separate from app.css on purpose: the marketing site and the internal
   portal should be able to change independently, and this file is the only
   stylesheet an anonymous visitor ever loads.
   ===================================================================== */
:root {
  --ink: #2b1c24;
  --ink-soft: #6d5b64;
  --line: #f0dfe8;
  --brand: #b8477e;
  --brand-2: #d76aa0;
  --brand-deep: #7d2b53;
  --gold: #c79a54;
  --paper: #fffafc;
  --paper-2: #fdeef5;
  --radius: 18px;
  --display: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  --shadow: 0 18px 48px rgba(125, 43, 83, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; color: var(--brand-deep); margin: 0 0 0.6rem; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--brand); }

/* ---- Wordmark ---- */
.mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-2));
  color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.02em; box-shadow: 0 6px 18px rgba(184, 71, 126, 0.35);
}
.mark.small { width: 36px; height: 36px; font-size: 0.92rem; border-radius: 11px; }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px);
       background: rgba(255, 250, 252, 0.86); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; padding-bottom: 0.8rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--display); font-size: 1.12rem; font-weight: 700; color: var(--brand-deep); }
.brand-sub { font-size: 0.63rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { text-decoration: none; font-size: 0.94rem; color: var(--ink-soft); font-weight: 500; }
.nav-links a:hover { color: var(--brand); }
.nav-links .nav-cta { color: var(--brand-deep); font-weight: 700; }
@media (max-width: 640px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 0.8rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 0.96rem; text-decoration: none; border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn.primary { background: linear-gradient(100deg, var(--brand-deep), var(--brand-2)); color: #fff;
               box-shadow: 0 10px 26px rgba(184, 71, 126, 0.32); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(184, 71, 126, 0.4); }
.btn.ghost { color: var(--brand-deep); border-color: var(--line); background: #fff; }
.btn.ghost:hover { background: var(--paper-2); }
.btn.outline { color: var(--brand-deep); border-color: #e9c9da; background: transparent; }
.btn.outline:hover { background: var(--paper-2); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
        background: radial-gradient(120% 90% at 15% 0%, #fff 0%, var(--paper-2) 55%, var(--paper) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.lede { font-size: clamp(1.02rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 1.8rem 0 1rem; }
.hero-note { font-size: 0.88rem; color: var(--ink-soft); }
.hero-glow { position: absolute; inset: auto -10% -60% 55%; height: 520px;
             background: radial-gradient(circle at center, rgba(215,106,160,0.30), transparent 65%); z-index: 1; }

/* ---- Sections ---- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-lede { color: var(--ink-soft); max-width: 68ch; margin-bottom: 2.2rem; font-size: 1.02rem; }
.cards { display: grid; gap: 1.2rem; }
.cards.three { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.card .icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
              border-radius: 12px; background: var(--paper-2); color: var(--brand); font-size: 1.15rem; margin-bottom: 0.9rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

.strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.6rem;
         border-top: 1px solid var(--line); padding-top: 1.6rem; }
.strip div { display: flex; flex-direction: column; }
.strip b { font-family: var(--display); color: var(--brand-deep); font-size: 1.02rem; }
.strip span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---- Pricing ---- */
.plans { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.pricing .plan { display: flex; flex-direction: column; position: relative; }
.pricing .plan.featured { border-color: var(--brand-2); box-shadow: 0 22px 54px rgba(184, 71, 126, 0.22); transform: translateY(-6px); }
@media (max-width: 900px) { .pricing .plan.featured { transform: none; } }
.ribbon { position: absolute; top: -0.85rem; left: 1.4rem; background: linear-gradient(100deg, var(--brand-deep), var(--brand-2));
          color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
          padding: 0.28rem 0.8rem; border-radius: 999px; }
.price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; margin: 0.2rem 0 0.6rem; min-height: 3.6rem; }
.price span { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--brand-deep); }
.price small { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.35; }
.card .plan-summary { color: var(--ink-soft); font-size: 0.94rem; margin: 0 0 0.5rem; }
.ticks { list-style: none; margin: 0.4rem 0 1.4rem; padding: 0; flex: 1; }
.ticks li { position: relative; padding-left: 1.5rem; margin-bottom: 0.55rem; font-size: 0.94rem; color: var(--ink); }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.plan .btn { text-align: center; }
.card .plan-note { font-size: 0.8rem; color: var(--ink-soft); margin: 0.85rem 0 0; }
.fineprint { margin-top: 2rem; font-size: 0.86rem; color: var(--ink-soft); max-width: 70ch; }

/* ---- Closing band ---- */
.cta-band { background: linear-gradient(110deg, var(--brand-deep), var(--brand) 60%, var(--brand-2)); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe3ef; margin: 0; max-width: 52ch; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band .btn.primary { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }

/* ---- Footer ---- */
.foot { background: #2b1c24; color: #f6e6ee; padding: 2.6rem 0 1.6rem; }
.foot-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 0.8rem; }
.foot-brand strong { display: block; font-family: var(--display); font-size: 1.05rem; }
.foot-sub { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.foot-contact { display: flex; flex-direction: column; gap: 0.15rem; }
.foot-contact a { color: #fff; font-weight: 600; text-decoration: none; font-size: 1.02rem; }
.foot-contact a:hover { text-decoration: underline; }
.foot-contact small { font-size: 0.78rem; color: #c8adbc; }
.foot-legal { margin-top: 1.8rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12);
              font-size: 0.78rem; color: #c8adbc; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
