
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a0d14;
  --deep: #2b0e1f;
  --wine: #5c1b38;
  --gold: #c9a84c;
  --gold-lt: #e4c97e;
  --cream: #f2e8db;
  --sand: #d9c9b4;
  --text-on-dark: rgba(242,232,219,0.9);
  --text-muted: rgba(242,232,219,0.58);
  --muted: rgba(242,232,219,0.58);
  --on-dark: rgba(242,232,219,0.9);
  --border-gold: rgba(201,168,76,0.22);
  --max: 1160px;
}

/* BASE */
html { scroll-behavior: smooth; }
body { font-family: 'Libre Baskerville', serif; background: var(--deep); color: var(--cream); font-size: 18px; line-height: 1.8; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 999; opacity: 0.5; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* LAYOUT */
.container { max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 36px; }
section { padding: 50px 0; }

/* UTILITIES */
.rule { width: 48px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 2.05rem; font-style: italic; color: var(--sand); font-weight: 400; margin-bottom: 14px; }
.bg-ink { background: var(--ink); }
.bg-grad { background: radial-gradient(ellipse 60% 70% at 100% 50%, rgba(92,27,56,0.35) 0%, transparent 60%), linear-gradient(180deg, #2b0e1f 0%, #1f0917 100%); }

/* SECTION HEADERS */
.sec-head { margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; }
.sec-head p { font-size: 1.05rem; color: var(--text-muted); margin-top: 18px; line-height: 1.85; }

/* ANIMATION */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.anim { animation: fadeUp 0.9s ease both; }
.anim-delay { animation: fadeUp 0.9s 0.14s ease both; }

/* NAV */
header { position: sticky; top: 0; z-index: 200; background: rgba(26,13,20,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(201,168,76,0.18); }
nav { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: var(--gold-lt); letter-spacing: 0.04em; }
.logo span { color: var(--text-on-dark); font-weight: 300; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; transition: color 0.25s; font-family: 'Libre Baskerville', serif; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 1px; background: var(--gold-lt); transition: all 0.3s; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; font-family: 'Libre Baskerville', serif; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all 0.3s; border: 1px solid var(--gold); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline { background: transparent; color: var(--gold-lt); }
.btn-outline:hover { background: rgba(201,168,76,0.1); }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;}

/* PAGE HERO */
.page-hero {
  padding: 60px 0 100px;
  background: radial-gradient(ellipse 65% 55% at 15% 40%, rgba(92,27,56,0.55) 0%, transparent 60%),
              linear-gradient(155deg, #1a0d14 0%, #251022 50%, #1a0a13 100%);
  position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.07); pointer-events: none; }
.ph-ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(201,168,76,0.06); pointer-events: none; }
.page-hero-text { animation: fadeUp 0.9s ease both; }
.page-hero-text h1, .page-hero h1 { font-size: clamp(2.4rem,4vw,3.8rem); font-weight: 300; margin-bottom: 24px; letter-spacing: -0.01em; }
.page-hero-text h1 em, .page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-text p, .page-hero p.lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.85; }
.page-hero-visual { animation: fadeUp 0.9s 0.12s ease both; }

/* INTRO STRIP */
.intro-strip { background: var(--wine); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 30px 0; text-align: center; }
.intro-strip p { font-size: 1rem; color: rgba(242,232,219,0.78); font-style: italic; }

/* HERO PANEL */
.hero-panel { animation: fadeUp 0.9s 0.14s ease both; border: 1px solid rgba(201,168,76,0.16); background: linear-gradient(155deg, rgba(201,168,76,0.05) 0%, rgba(26,13,20,0.8) 100%); padding: 48px 40px; text-align: center; position: relative; overflow: hidden; }
.hero-panel::before { content: '?'; font-family: 'Cormorant Garamond', serif; font-size: 14rem; font-weight: 300; font-style: italic; color: rgba(201,168,76,0.05); position: absolute; top: -30px; left: 50%; transform: translateX(-50%); line-height: 1; pointer-events: none; user-select: none; }
.hero-panel-content { position: relative; z-index: 1; }
.panel-count { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: var(--gold-lt); line-height: 1; margin-bottom: 8px; }
.panel-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(201,168,76,0.5); font-family: 'Libre Baskerville', serif; }
.panel-divider { width: 32px; height: 1px; background: rgba(201,168,76,0.2); margin: 24px auto; }
.panel-cats { display: flex; flex-direction: column; gap: 8px; }
.panel-cat { font-size: 0.82rem; color: var(--text-muted); font-family: 'Cormorant Garamond', serif; font-style: italic; padding: 7px 12px; border-left: 1px solid rgba(201,168,76,0.2); text-align: left; transition: border-color 0.2s, color 0.2s; }
.panel-cat:hover { border-color: var(--gold); color: var(--gold-lt); }

/* FEATURES */
#features { background: var(--ink); }
.features-intro { margin-bottom: 68px; }
.features-intro h2 { font-size: clamp(1.9rem,3vw,2.8rem); font-weight: 300; margin-bottom: 20px; }
.features-intro p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; }
.features-list { display: flex; flex-direction: column; }
.feature-item { display: grid; grid-template-columns: 80px 1fr; gap: 48px; padding: 52px 0; border-bottom: 1px solid rgba(201,168,76,0.1); align-items: start; }
.feature-item:first-child { border-top: 1px solid rgba(201,168,76,0.1); }
.feature-item:last-child { border-bottom: 0; }
.feature-glyph { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(201,168,76,0.14); line-height: 1; text-align: center; padding-top: 6px; }
.feature-body { margin-right: 40px; }
.feature-body h3 { font-size: 1.5rem; font-weight: 300; color: var(--cream); margin-bottom: 14px; }
.feature-body p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.85; }

/* RESSOURCE SECTION */
.resource-section h2 { margin-bottom: 24px; }

/* TIMELINE */
.timeline { display: flex; flex-direction: column; gap: 2px; background: rgba(201,168,76,0.1); }
.tl-step { background: var(--ink); padding: 52px 48px; display: grid; grid-template-columns: 110px 1fr; gap: 40px; align-items: start; position: relative; transition: background 0.3s; }
.tl-step:hover { background: #1e0e18; }
.tl-step::after { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--gold), transparent); }
.tl-left { text-align: center; }
.tl-num { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: rgba(201,168,76,0.13); line-height: 1; }
.tl-tag { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--gold); font-style: italic; margin-top: 8px; display: block; }
.tl-right h3 { font-size: 1.5rem; font-weight: 300; color: var(--cream); margin-bottom: 16px; }
.tl-right p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.85; }
.tl-right p+p { margin-top: 12px; }
.tl-aside { background: rgba(201,168,76,0.05); border-left: 2px solid rgba(201,168,76,0.25); padding: 14px 20px; margin-top: 20px; font-size: 0.92rem; color: var(--text-muted); font-style: italic; line-height: 1.8; }

/* PARALLEL TRACKS */
.parallel { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(201,168,76,0.1); }
.track { background: var(--deep); padding: 48px 40px; position: relative; }
.track::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.track-lbl { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-style: italic; color: var(--gold); margin-bottom: 20px; display: block; }
.track h3 { font-size: 1.3rem; font-weight: 300; color: var(--cream); margin-bottom: 20px; }
.track ul { list-style: none; }
.track ul li { padding: 11px 0 11px 24px; border-bottom: 1px solid rgba(201,168,76,0.08); font-size: 0.97rem; color: var(--text-muted); position: relative; line-height: 1.75; }
.track ul li::before { content: '-'; position: absolute; left: 0; color: var(--gold); top: 12px; font-size: 0.8rem; }

/* COMPARE TABLE */
.compare { border: 1px solid rgba(201,168,76,0.14); overflow: hidden; }
.c-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.c-row.hdr { background: var(--wine); }
.c-row+.c-row { border-top: 1px solid rgba(201,168,76,0.08); }
.c-cell { padding: 18px 24px; font-size: 0.95rem; color: var(--text-muted); }
.c-cell:not(:last-child) { border-right: 1px solid rgba(201,168,76,0.08); }
.c-row.hdr .c-cell { color: var(--gold-lt); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; }
.c-cell.good { color: var(--gold-lt); }
.c-cell.bad { color: rgba(196,99,126,0.7); }

/* STATUS LEGEND */
#status-section { background: radial-gradient(ellipse 65% 55% at 90% 40%, rgba(92,27,56,0.38) 0%, transparent 55%), var(--deep); }
.status-intro { margin-bottom: 56px; }
.status-intro h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; margin-bottom: 20px; }
.status-intro p { font-size: 1.05rem; color: var(--text-muted); }
.status-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; background: rgba(201,168,76,0.1); }
.status-card { background: var(--deep); padding: 36px 26px; position: relative; }
.status-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.status-icon { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; color: var(--gold); margin-bottom: 14px; line-height: 1; }
.status-card h3 { font-size: 1rem; font-weight: 400; color: var(--cream); margin-bottom: 10px; }
.status-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ALERTS */
#alerts { background: var(--ink); }
.alerts-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: start; }
.alerts-text h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; margin-bottom: 20px; }
.alerts-text p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.alerts-text p:last-of-type { margin-bottom: 0; }
/* new grid */
.alerts-grid { width: 100%; border-collapse: collapse; }
.alerts-grid thead tr { background: rgba(201,168,76,0.15); }
.alerts-grid th { padding: 12px 18px; font-family: 'Libre Baskerville', serif; font-size: 0.72rem; font-weight: bold; text-transform: uppercase; color: var(--gold); text-align: left; border-bottom: 1px solid rgba(201,168,76,0.25); white-space: nowrap; }
.alerts-grid tbody tr { background: var(--ink); border-bottom: 2px solid rgba(201,168,76,0.1); }
.alerts-grid tbody tr:last-child { border-bottom: none; }
.alerts-grid td { padding: 16px 18px; font-size: 0.92rem; color: var(--text-muted); text-align: left; }
/* planned & confirmed columns */
.alerts-grid th:nth-child(n+2) { text-align: center; }
.alerts-grid td:nth-child(n+2) { text-align: center; color: var(--cream); font-size: 0.88rem; }
/* checkboxes &#9745; = checked / &#9744; = unchecked */
.alerts-grid td.cb { font-size: 1.2rem; color: var(--gold); text-align: center; }

/* WHO */
#who { background: radial-gradient(ellipse 55% 60% at 5% 60%, rgba(92,27,56,0.3) 0%, transparent 55%), var(--deep); }
.who-intro { margin-bottom: 56px; }
.who-intro h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; margin-bottom: 20px; }
.who-intro p { font-size: 1.05rem; color: var(--text-muted); }
.who-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(201,168,76,0.1); }
.who-col { background: var(--deep); padding: 40px 32px; }
.who-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--gold-lt); margin-bottom: 12px; }
.who-col p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* NEXT STEPS */
.steps-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(201,168,76,0.1); margin-top: 48px; }
.step3-item { background: var(--ink); padding: 36px 28px; }
.step3-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: rgba(201,168,76,0.14); margin-bottom: 14px; line-height: 1; }
.step3-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--gold-lt); margin-bottom: 10px; }
.step3-item p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; }

/* JEAN (TESTIMONIAL) */
.jean-box { background: linear-gradient(135deg, var(--wine) 0%, #3d1026 100%); border: 1px solid rgba(201,168,76,0.22); padding: 52px; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start; position: relative; overflow: hidden; }
.jean-box::before { content: '"'; position: absolute; right: 40px; top: -10px; font-family: 'Cormorant Garamond', serif; font-size: 12rem; color: rgba(201,168,76,0.05); line-height: 1; pointer-events: none; }
.jean-mono { width: 72px; height: 72px; border: 1px solid rgba(201,168,76,0.38); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-lt); font-style: italic; flex-shrink: 0; background: rgba(201,168,76,0.05); }
.jean-box h4 { font-size: 1rem; color: var(--gold-lt); margin-bottom: 10px; font-family: 'Libre Baskerville', serif; font-weight: 700; }
.jean-box p { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 1.08rem; color: rgba(242,232,219,0.82); font-weight: 400; line-height: 1.8; }

/* DASHBOARD MOCK */
.dash-visual { width: 100%; height: 100%; background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, rgba(26,13,20,0.98) 100%); border: 1px solid var(--border-gold); display: flex; flex-direction: column; position: relative; overflow: hidden; padding: 24px; }
.dash-visual::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,168,76,0.06); pointer-events: none; }
.dash-bar { background: rgba(201,168,76,0.07); border-bottom: 1px solid rgba(201,168,76,0.14); padding: 10px 14px; display: flex; gap: 8px; align-items: center; margin: -24px -24px 20px; }
.dash-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(201,168,76,0.3); }
.dash-title { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; color: rgba(201,168,76,0.4); letter-spacing: 0.14em; text-transform: uppercase; margin-left: 8px; }
.dash-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(201,168,76,0.07); }
.dash-row:last-child { border-bottom: none; }
.dash-flag { width: 22px; font-size: 0.85rem; flex-shrink: 0; }
.dash-supplier { font-size: 0.72rem; color: rgba(242,232,219,0.55); flex: 1; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Cormorant Garamond', serif; }
.dash-status { font-size: 0.65rem; padding: 3px 8px; border-radius: 2px; flex-shrink: 0; font-family: 'Libre Baskerville', serif; font-weight: 700; }
.status-confirmed { background: rgba(201,168,76,0.18); color: var(--gold-lt); }
.status-transit { background: rgba(92,27,56,0.6); color: rgba(242,232,219,0.8); }
.status-customs { background: rgba(42,20,35,0.9); color: rgba(242,232,219,0.5); border: 1px solid rgba(201,168,76,0.15); }
.status-arrived { background: rgba(30,80,30,0.5); color: rgba(160,220,160,0.85); }
.dash-caption { font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; color: rgba(201,168,76,0.3); text-align: center; margin-top: auto; padding-top: 16px; letter-spacing: 0.1em; font-style: italic; }

/* FORM */
.form-panel { background: linear-gradient(155deg, rgba(201,168,76,0.06) 0%, rgba(26,13,20,0.95) 100%); border: 1px solid var(--border-gold); padding: 44px 40px; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--cream); margin-bottom: 6px; }
.form-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; font-style: italic; line-height: 1.7; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 8px; font-family: 'Libre Baskerville', serif; }
input, select, textarea { width: 100%; padding: 12px 16px; font-family: 'Libre Baskerville', serif; font-size: 0.97rem; color: var(--cream); background: rgba(26,13,20,0.8); border: 1px solid rgba(201,168,76,0.22); outline: none; transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: rgba(26,13,20,0.95); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: rgba(26,13,20,0.8); padding-right: 40px; }
select option { background: #1a0d14; color: var(--cream); }
textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.btn-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--ink); border: none; font-family: 'Libre Baskerville', serif; font-size: 0.97rem; font-weight: 700; cursor: pointer; transition: background 0.3s; margin-top: 6px; }
.btn-submit:hover { background: var(--gold-lt); }
.form-note { font-size: 0.82rem; color: rgba(201,168,76,0.45); margin-top: 14px; line-height: 1.7; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; background: rgba(201,168,76,0.1); margin-bottom: 24px;}
.faq-item { background: var(--ink); }
.faq-q { padding: 24px 32px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: background 0.2s; user-select: none; }
.faq-q:hover { background: #210e1a; }
.faq-q h3 { font-size: 1.1rem; font-weight: 400; color: var(--cream); }
.faq-tog { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 32px 24px; font-size: 0.97rem; color: var(--text-muted); line-height: 1.85; }
.faq-item.open .faq-tog { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-section-title { margin-bottom: 24px; }
.missed-box { text-align: center; }
.missed-box p { margin-bottom: 24px; }

/* FANCY LIST */
.fancy-list { list-style-type: circle; padding-left: 30px; }
.fancy-list strong { color: var(--cream); }
.fancy-list li { color: var(--text-on-dark); }

/* FOR WHO */
.for-card { margin-bottom: 30px; }

/* CTA */
.cta-wrap { background: var(--ink); padding: 96px 0; text-align: center; }
.cta-wrap h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; margin-bottom: 18px; }
.cta-wrap p { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin: 0 auto 40px; line-height: 1.85; }
.cta-band { background: linear-gradient(135deg, #3b1228 0%, var(--wine) 50%, #3b1228 100%); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.08); pointer-events: none; }
.cta-band h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 300; margin-bottom: 18px; position: relative; }
.cta-band p { font-size: 1.05rem; color: rgba(242,232,219,0.7); margin-bottom: 36px; font-style: italic; position: relative; }
.cta-band .btn-group { justify-content: center; position: relative; }

/* CONTROL TOWER */
#about { background: var(--ink); }

#how-it-works { background: var(--ink); }

#why-section { background: radial-gradient(ellipse 65% 55% at 90% 40%, rgba(92,27,56,0.38) 0%, transparent 55%), var(--deep); }
.why-intro { margin-bottom: 56px; }
.why-intro h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; margin-bottom: 20px; }
.why-intro p { font-size: 1.05rem; color: var(--text-muted); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(201,168,76,0.1); }
.why-card { background: var(--deep); padding: 36px 26px; position: relative; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.why-icon { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; color: var(--gold); margin-bottom: 14px; line-height: 1; }
.why-card h3 { font-size: 1rem; font-weight: 400; color: var(--cream); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

#pricing { background: var(--ink); }
.pricing-intro { margin-bottom: 20px; }
.pricing-intro h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; margin-bottom: 20px; }
.pricing-intro p { font-size: 1.05rem; color: var(--text-muted); }

#get-in-touch { background: radial-gradient(ellipse 65% 55% at 90% 40%, rgba(92,27,56,0.38) 0%, transparent 55%), var(--deep); }
.get-in-touch-intro { margin-bottom: 20px; }
.get-in-touch-intro h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; margin-bottom: 20px; }
.get-in-touch-intro p { font-size: 1.05rem; color: var(--text-muted); }

/* CONTACT */
#contact { background: var(--ink); }
.contact-info { margin-bottom: 20px; }
.contact-info h2 { font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:300;color:var(--cream);margin-bottom:24px; }
.contact-info p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; }

.contact-info-block { margin-bottom: 22px; }
.contact-info-block strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-bottom: 4px; font-family: 'Libre Baskerville', serif; }
.contact-info-block a, .contact-info-block span { font-size: 1rem; color: var(--on-dark); }
.contact-info-block a { color: var(--gold); }
.contact-info-block a:hover { color: var(--gold-lt); }
.contact-reply { font-size: 14px; color: var(--text-muted)}
.contact-divider { width: 100%; height: 1px; background: rgba(201,168,76,0.14); margin: 28px 0; }
.side-links { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.side-link { font-size: 0.9rem; color: var(--gold); font-family: 'Libre Baskerville', serif; display: flex; align-items: center; gap: 8px; transition: gap 0.2s, color 0.2s; }
.side-link::before { content: '?'; }
.side-link:hover { color: var(--gold-lt); gap: 11px; }

/* FOOTER */
footer { background: var(--ink); border-top: 1px solid rgba(201,168,76,0.13); padding: 52px 0; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-lt); font-weight: 300; margin-bottom: 14px; letter-spacing: 0.06em; }
footer p { font-size: 0.95rem; color: var(--text-muted); font-weight: 400; line-height: 2; }
footer a { color: var(--gold); transition: color 0.2s; }
footer a:hover { color: var(--gold-lt); }
.footer-divider { width: 48px; height: 1px; background: rgba(201,168,76,0.28); margin: 20px auto; }
.footer-nav { display: flex; justify-content: center; gap: 32px; margin-top: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-lt); }

/* MOBILE */
@media (max-width: 768px) {
  section, .page-hero { padding: 70px 0; }
  nav, .container { padding-left: 20px; padding-right: 20px; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--ink); flex-direction: column; padding: 20px; gap: 0; border-bottom: 1px solid rgba(201,168,76,0.15); z-index: 300; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(201,168,76,0.07); }
  .nav-links a { display: block; padding: 14px 0; }
  .feature-body { margin-right: 0; }
  .feature-item { grid-template-columns: 1fr; gap: 12px; }
  .feature-glyph { font-size: 2.5rem; text-align: left; }
  .status-grid { grid-template-columns: 1fr 1fr; background: transparent; }
  .alerts-inner { grid-template-columns: 1fr; gap: 44px; }
  .alerts-grid th { padding: 3px 5px; font-size: 0.55rem; border-bottom: 1px solid rgba(201,168,76,0.25); }
  .alerts-grid td { padding: 3px 5px; font-size: 0.65rem; }
  .alerts-grid td:nth-child(n+2) { font-size: 0.55rem; }
  .alerts-grid td.cb { font-size: 0.9rem; }
  .who-cols { grid-template-columns: 1fr; }
  .jean-box { grid-template-columns: 1fr; gap: 24px; padding: 36px 24px; }
  .tl-step { grid-template-columns: 1fr; gap: 14px; padding: 36px 20px; }
  .tl-left { text-align: left; }
  .tl-num { font-size: 3rem; }
  .parallel { grid-template-columns: 1fr; }
  .c-row { grid-template-columns: 1fr; }
  .c-row.hdr .c-cell:not(:first-child) { display: none; }
  .btn { width: 100%; text-align: center; display: block; }
  footer p { margin-top: 24px; }
  .steps-3 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: transparent; margin-top: 48px; }
  .fancy-list { padding-left: 15px; }
}

/* TABLETS */
@media (max-width: 835px) {
    .alerts-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* SMALL DEVICES (360px and less) */
@media (max-width: 361px) {
  .alerts-inner { grid-template-columns: 1fr; gap: 30px; }
  .alerts-grid th { padding: 3px 5px; font-size: 0.5rem; }
  .alerts-grid td { padding: 3px 5px; font-size: 0.6rem; }
  .alerts-grid td:nth-child(n+2) { font-size: 0.5rem; }
  .alerts-grid td.cb { font-size: 0.8rem; }
}

@media (max-width: 351px) {
  .alerts-grid { display: none; }
}



