/* Shared stylesheet for the industry pages (travel, real estate, retail).
   Extracted verbatim from travel.html so every industry page renders from
   one source instead of each carrying its own copy. */

  /* ==================== TOKENS (shared with index) ==================== */
  :root {
    --brand: #6B48D1;
    --brand-display: #7C3AED;
    --brand-deep: #5B21B6;
    --brand-darker: #2E1065;
    --brand-night: #1A0B3D;
    --brand-glow: #A78BFA;
    --brand-bright: #C4B5FD;
    --brand-soft: #F1EDFA;

    --grad-cta: linear-gradient(180deg, #C4B5FD 0%, #8B5CF6 55%, #6D28D9 100%);
    --grad-cta-hover: linear-gradient(180deg, #DDD6FE 0%, #A78BFA 55%, #7C3AED 100%);
    --grad-hero: radial-gradient(140% 90% at 18% 0%, #4C1D95 0%, #2E1065 45%, #1A0B3D 100%);
    --grad-hero-soft: radial-gradient(120% 80% at 80% 100%, #5B21B6 0%, #2E1065 50%, #150832 100%);
    --grad-page: linear-gradient(180deg, #1A0B3D 0%, #2E1065 100%);

    --ink: #0F172A;
    --ink-2: #1F2937;
    --ink-3: #334155;
    --muted: #6B7280;
    --muted-2: #94A3B8;
    --line: #E5E7EB;
    --line-2: #F3F4F6;
    --surface: #F8F6F1;
    --paper: #FFFFFF;

    --serif: "Newsreader", Georgia, serif;
    --sans: "Inter", system-ui, -apple-system, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;

    --r-lg: 16px;
    --r-xl: 22px;
    --shadow-card: 0 1px 2px rgba(15,23,42,.04), 0 8px 24px -12px rgba(15,23,42,.08);
    --shadow-product-light: 0 24px 60px -20px rgba(15,23,42,.18), 0 4px 12px -4px rgba(15,23,42,.08);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.5;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  ::selection { background: var(--brand-bright); color: var(--brand-darker); }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }

  .wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 920px; }
  .section { position: relative; padding: 110px 0; }
  @media (max-width: 720px) {
    .wrap { padding: 0 22px; }
    .section { padding: 76px 0; }
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
  }
  .eyebrow.on-dark { color: var(--brand-bright); }
  .eyebrow::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
  }
  .h-section {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 14px 0 0;
    text-wrap: balance;
  }
  .h-section em { font-style: italic; color: var(--brand); }
  .lede {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink-3);
    margin: 16px 0 0;
    max-width: 58ch;
    text-wrap: pretty;
  }
  .lede.on-dark { color: rgba(255,255,255,.78); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    transition: background 120ms ease, transform 120ms ease, box-shadow 200ms ease;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn.primary {
    background: var(--grad-cta);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 6px 18px -6px rgba(124,58,237,.5);
  }
  .btn.primary:hover { background: var(--grad-cta-hover); }
  .btn.ghost-light {
    background: rgba(255,255,255,.06);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset;
    backdrop-filter: blur(8px);
  }
  .btn.ghost-light:hover { background: rgba(255,255,255,.12); }
  .btn .arrow { transition: transform 240ms cubic-bezier(.5,0,.2,1); }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ==================== NAV ==================== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 90;
    height: 68px;
    display: flex;
    align-items: center;
    transition: background 280ms ease, backdrop-filter 280ms ease, box-shadow 280ms ease;
  }
  .nav.scrolled {
    background: rgba(26, 11, 61, .72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(255,255,255,.08);
  }
  .nav.on-light.scrolled {
    background: rgba(255,255,255, .82);
    box-shadow: 0 1px 0 var(--line);
  }
  .nav-inner { display: flex; align-items: center; gap: 32px; width: 100%; }
  .brand-mark {
    display: flex; align-items: center; gap: 9px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .nav.on-light .brand-mark { color: var(--ink); }
  .brand-mark .glyph {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: var(--grad-cta);
    box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset, 0 4px 10px -2px rgba(124,58,237,.5);
    display: grid; place-items: center;
    color: #fff;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
  }
  .nav-links { display: flex; gap: 28px; align-items: center; margin-left: 16px; }
  .nav-links a {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 500;
    transition: color 160ms ease;
  }
  .nav-links a:hover { color: #fff; }
  .nav.on-light .nav-links a { color: var(--ink-3); }
  .nav.on-light .nav-links a:hover { color: var(--ink); }
  .nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset;
    color: #fff;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 160ms ease;
  }
  .nav-cta:hover { background: rgba(255,255,255,.16); }
  .nav.on-light .nav-cta { background: var(--ink); color: #fff; box-shadow: none; }
  .nav.on-light .nav-cta:hover { background: var(--brand-deep); }
  @media (max-width: 720px) { .nav-links { display: none; } }

  /* ==================== HERO ==================== */
  .hero {
    position: relative;
    padding: 170px 0 110px;
    overflow: hidden;
    background: var(--grad-hero);
    color: #fff;
    isolation: isolate;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .55;
    pointer-events: none;
    z-index: 0;
  }
  .hero-display {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 22px 0 0;
    color: #fff;
    text-wrap: balance;
    max-width: 20ch;
  }
  .hero-display em {
    font-style: italic;
    background: linear-gradient(120deg, #C4B5FD 0%, #DDD6FE 60%, #F5F3FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-lede {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 21px);
    color: rgba(255,255,255,.82);
    margin: 26px 0 0;
    max-width: 58ch;
    line-height: 1.5;
    text-wrap: pretty;
  }
  .hero-ctas { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .hero-fineprint {
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,.56);
    text-transform: uppercase;
  }

  /* Example-questions ticker strip */
  .askbar {
    background: var(--brand-night);
    color: #fff;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
  }
  .askbar .cap {
    text-align: center;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 16px;
  }
  .marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
  .marquee-track {
    display: flex; gap: 14px;
    flex-shrink: 0;
    animation: marquee 44s linear infinite;
    padding-right: 14px;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
  }
  .askchip {
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 8px 16px;
    white-space: nowrap;
  }
  .askchip .q { color: var(--brand-bright); margin-right: 6px; }

  /* ==================== MODULE ROWS ==================== */
  .mods { background: var(--surface); }
  .mods .section-head { text-align: center; margin-bottom: 24px; }
  .mod-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: 14.5px; font-weight: 600;
    color: var(--brand-bright); text-decoration: none;
  }
  .mod-more:hover { text-decoration: underline; }
  .mod-more .mm-arrow { transition: transform .15s; }
  .mod-more:hover .mm-arrow { transform: translateX(3px); }
  .mod-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 90px;
  }
  .mod-row:last-child { border-bottom: 0; }
  @media (max-width: 980px) {
    .mod-row { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  }
  .mod-row.flip .mod-copy { order: 2; }
  @media (max-width: 980px) { .mod-row.flip .mod-copy { order: 0; } }
  .mod-copy h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 12px 0 0;
    color: var(--ink);
    text-wrap: balance;
  }
  .mod-copy h3 em { font-style: italic; color: var(--brand); }
  .mod-copy p.desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-3);
    margin: 14px 0 0;
    max-width: 52ch;
  }
  .mod-feats {
    list-style: none;
    margin: 20px 0 0; padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    font-size: 13px;
    color: var(--ink-3);
  }
  @media (max-width: 600px) { .mod-feats { grid-template-columns: 1fr; } }
  .mod-feats li { display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
  .mod-feats li::before {
    content: "";
    margin-top: 7px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
  }
  .mod-ask {
    margin-top: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-3);
  }
  .mod-ask .gd { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

  /* Module visual cards */
  .mod-vis {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-product-light);
    overflow: hidden;
  }
  .mod-vis .hd {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif); font-size: 15px; font-weight: 500; color: var(--ink);
  }
  .mod-vis .hd .crumb { color: var(--muted); font-family: var(--sans); font-size: 11.5px; font-weight: 400; }
  .mod-vis .hd .sep { color: var(--line); }
  .mod-vis .bd { padding: 14px 16px 16px; }
  .vrow {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 12.5px;
  }
  .vrow:last-child { border-bottom: 0; }
  .vrow .av {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B48D1, #1F0E4A);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--mono); font-size: 9px; font-weight: 600;
    flex-shrink: 0;
  }
  .vrow .nm { font-weight: 600; color: var(--ink); white-space: nowrap; }
  .vrow .sb { color: var(--muted); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .vchip {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .vchip.vip { background: var(--brand-soft); color: var(--brand-deep); }
  .vchip.warn { background: #FFF7ED; color: #B45309; }
  .vchip.ok { background: #ECFDF5; color: #059669; }
  .vchip.due { background: #FEF2F2; color: #B91C1C; }
  .vchip.info { background: var(--line-2); color: var(--muted); }
  .vbar {
    height: 8px;
    border-radius: 999px;
    background: var(--line-2);
    overflow: hidden;
    flex: 1;
  }
  .vbar span { display: block; height: 100%; border-radius: 999px; background: var(--grad-cta); }
  .kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .kcol { background: var(--surface); border: 1px solid var(--line-2); border-radius: 8px; padding: 8px; }
  .kcol .kcap { font-family: var(--mono); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 6px; }
  .kcard { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 7px 8px; font-size: 10px; line-height: 1.3; margin-bottom: 6px; box-shadow: 0 2px 6px -3px rgba(15,23,42,.1); }
  .kcard:last-child { margin-bottom: 0; }
  .kcard .knm { font-weight: 600; color: var(--ink); }
  .kcard .kmeta { color: var(--muted); font-family: var(--mono); font-size: 8.5px; margin-top: 2px; }
  .vgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .vcell {
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 12px;
    font-size: 11px;
  }
  .vcell .cap { font-family: var(--mono); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 5px; }
  .vcell .big { font-family: var(--serif); font-size: 20px; color: var(--ink); }
  .vcell .sub { color: var(--muted); font-size: 10px; margin-top: 2px; }
  .quote-a {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ink-2);
  }
  .quote-a .cap {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
  }
  .quote-a .cites { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 5px; }
  .quote-a .cite {
    display: inline-flex; align-items: center; gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 2px 8px;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--ink-3);
  }
  .quote-a .cite .num { color: var(--brand); font-weight: 600; }

  /* ==================== EVERYTHING ELSE / BASE PLATFORM ==================== */
  .base {
    background: var(--grad-page);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .base::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .5;
    pointer-events: none;
  }
  .base .section-head { text-align: center; margin-bottom: 56px; }
  .base .section-head h2 { color: #fff; }
  .base .section-head h2 em { color: var(--brand-bright); }
  .base .section-head .lede { color: rgba(255,255,255,.7); margin-left: auto; margin-right: auto; }
  .base-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
  }
  @media (max-width: 1100px) { .base-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .base-grid { grid-template-columns: 1fr; } }
  .base-card {
    background: rgba(255,255,255,.04);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
    border-radius: 14px;
    padding: 20px;
  }
  .base-card h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 17px;
    margin: 0 0 5px;
    color: #fff;
  }
  .base-card p { margin: 0; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,.6); }

  /* ==================== FINALE / FOOTER ==================== */
  .finale {
    background: var(--grad-hero-soft);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  .finale::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(60% 40% at 50% 30%, rgba(167,139,250,.22), transparent 70%);
    pointer-events: none;
  }
  .finale .h {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0;
    text-wrap: balance;
  }
  .finale .h em {
    font-style: italic;
    background: linear-gradient(120deg, #C4B5FD, #DDD6FE);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .finale .lede { color: rgba(255,255,255,.72); margin: 22px auto 0; }
  .finale .ctas { display: inline-flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }

  .foot {
    background: var(--brand-night);
    color: rgba(255,255,255,.65);
    padding: 44px 0 24px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
  }
  .foot-bottom a { color: rgba(255,255,255,.65); }
  .foot-bottom a:hover { color: #fff; }
  .foot-links { display: flex; gap: 18px; flex-wrap: wrap; }

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.3,1); }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
  }
