
/* prototype page */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--red: #c0392b;
--red-light: #fff0ef;
--red-mid: #f5c6c6;
--gold: #d4a820;
--gold-bright: #f0c040;
--dark: #1a1612;
--text: #2c2420;
--muted: #7a6e6a;
--border: rgba(0,0,0,0.09);
--surface: #ffffff;
--bg: #faf8f5;
--radius: 14px;
--radius-sm: 8px;
--radius-ssm: 4px;
--bob: #0d2b45;
--bob-light: #e8f0f7;
--card-bg: #1a1f3c;
--card-bg-hover: #1e2445;
--card-border: rgba(212,168,32,0.25);
--card-border-hover: rgba(192,148,14,0.55);
--card-heading: #d4a820;
--card-text: rgb(214, 202, 202);
--card-muted: #a09ab8;
}

html { scroll-behavior: smooth; }
body { font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text); font-size: 15px; line-height: 1.6; }

.page-bg { position: relative; min-height: 100vh; }
.page-bg::before {
content: '';
position: fixed; inset: 0;
background-image: url('https://www.shutterstock.com/image-photo/bank-building-600nw-574713295.jpg');
background-size: cover; background-position: center top; background-repeat: no-repeat;
z-index: -2;
}
.page-bg::after {
content: '';
position: fixed; inset: 0;
background: rgba(8, 10, 28, 0.72);
z-index: -1;
}

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 50; display: flex; justify-content: space-between; align-items: center; padding: 0 48px; height: 64px; background: rgba(26,31,60,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(212,168,32,0.15); }
.logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #d4a820; letter-spacing: -0.02em; text-decoration: none; }
.logo em { color: var(--red); font-style: normal; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
font-family:'Times New Roman', Times, serif;
font-size: 11px; font-weight: 600;
letter-spacing: 0.09em; text-transform: uppercase;
color: rgba(232,228,240,0.72);
text-decoration: none;
padding: 8px 14px;
border-radius: 0;
border: 1px solid transparent;
position: relative;
transition: color 0.18s, background 0.18s, border-color 0.18s;
white-space: nowrap;
}
/* bottom accent line on hover */
.nav-links a::after {
content: '';
position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
background: var(--gold);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.22s ease;
}
.nav-links a:hover {
color: #fff;
background: rgba(212,168,32,0.08);
border-color: rgba(212,168,32,0.18);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:active {
background: rgba(212,168,32,0.2);
border-color: rgba(212,168,32,0.45);
}
.nav-links a.active {
color: var(--gold-bright);
background: rgba(212,168,32,0.12);
border-color: rgba(212,168,32,0.35);
}
.nav-links a.active::after { transform: scaleX(1); }

/* FinSight -  distinct CTA button with blink */
.nav-links a.nav-cta {
color: #0e1128;
background: var(--gold);
border-color: var(--gold);
font-weight: 700;
letter-spacing: 0.1em;
}
.nav-links a.nav-cta::after { display: none; }
@keyframes ctaBlink {
0%, 100% { background: var(--gold); border-color: var(--gold); box-shadow: none; color: #0e1128; }
50% { background: var(--gold-bright); border-color: var(--gold-bright); box-shadow: 0 0 12px rgba(240,192,64,0.6); color: #0a0e20; }
}
.nav-links a.nav-cta { animation: ctaBlink 1.3s ease-in-out infinite; }
.nav-links a.nav-cta:hover {
animation: none;
background: var(--gold-bright);
border-color: var(--gold-bright);
color: #0e1128;
box-shadow: 0 0 14px rgba(212,168,32,0.45);
}
.nav-links a.nav-cta:active {
animation: none;
background: #b8900e;
border-color: #b8900e;
box-shadow: none;
}

/* blinking animation — for other nav-blink links */
@keyframes tabBlink {
0%, 100% { background: rgba(212,168,32,0.12); border-color: rgba(212,168,32,0.35); color: #f0c040; }
50% { background: rgba(212,168,32,0.28); border-color: rgba(212,168,32,0.6); color: #fff; box-shadow: 0 0 8px rgba(212,168,32,0.3); }
}
.nav-blink { animation: tabBlink 1.3s ease-in-out infinite; }
.nav-blink:hover { animation: none !important; }

/* Hamburger */
.ham-btn { display: none; flex-direction: column; gap: 5px; background: none; border: 1px solid rgba(212,168,32,0.25); cursor: pointer; padding: 8px 9px; border-radius: 0; }
.ham-btn span { display: block; width: 20px; height: 2px; background: var(--gold-bright); }

/* Mobile dropdown */
.mobile-nav {
display: none; flex-direction: column;
position: fixed; top: 64px; right: 16px; width: 230px;
background: rgba(14,17,40,0.99); border: 1px solid rgba(212,168,32,0.25);
border-radius: 0; box-shadow: 0 12px 32px rgba(0,0,0,0.55);
padding: 6px; z-index: 100;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
font-family: 'DM Sans', sans-serif;
font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
color: rgba(232,228,240,0.75); text-decoration: none;
padding: 10px 14px; border-radius: 0;
border-left: 2px solid transparent;
transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mobile-nav a:hover { background: rgba(212,168,32,0.1); color: #fff; border-left-color: var(--gold); }
.mob-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--card-muted); padding: 8px 14px 4px; border-bottom: 1px solid rgba(212,168,32,0.15); margin-bottom: 4px; }
@keyframes mobileCta { 0%,100% { background: var(--gold); } 50% { background: var(--gold-bright); box-shadow: 0 0 8px rgba(240,192,64,0.4); } }
.mobile-nav .nav-cta { background: var(--gold); color: #0e1128 !important; font-weight: 700; margin-top: 4px; border-left-color: transparent; animation: mobileCta 1.3s ease-in-out infinite; }
.mobile-nav .nav-cta:hover { animation: none; background: var(--gold-bright); border-left-color: transparent; }
.mobile-nav .nav-blink { color: #f0c040 !important; animation: mobileBlink 1.3s ease-in-out infinite; }
@keyframes mobileBlink { 0%, 100% { background: rgba(212,168,32,0.1); border-left-color: rgba(212,168,32,0.4); } 50% { background: rgba(212,168,32,0.25); border-left-color: var(--gold); } }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 26px 48px 38px; color: white; }
.hero-inner { position: relative; max-width: 860px; }
.hero-eyebrow { display: inline-flex; align-items: center; margin-left: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-family: 'Times New Roman', Times, serif;}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: 0.05em; margin-bottom: 14px; }
.hero h1 span { color: #e8755a; }
.hero p { font-size: 14px; color: whitesmoke; line-height: 1.7; margin-bottom: 12px; max-width: 680px; font-style: italic; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: white; text-decoration: none; padding: 6px 22px; border-radius: var(--radius-ssm); font-size: 13px; font-weight: 600; transition: background 0.15s, transform 0.15s; text-transform: uppercase; font-family: 'Times New Roman', Times, serif; }
.hero-cta:hover { background: #a93226; transform: translateY(-1px); }

/* Anchor nav */
.anchor-nav { background: rgba(26,31,60,0.90); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,168,32,0.15); padding: 0 48px; display: flex; overflow-x: auto; position: sticky; top: 64px; z-index: 40; }
.anchor-nav a { font-family:'Times New Roman', Times, serif; font-size: 12px; font-weight: 600; color: var(--card-muted); text-decoration: none; padding: 14px 18px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.15s, border-color 0.15s; text-transform: uppercase; }
.anchor-nav a:hover { color: var(--gold-bright); border-bottom-color: rgba(212,168,32,0.4); }

/* Main */
.main { width: 100%; max-width: 100%; padding: 52px 160px; display: flex; flex-direction: column; gap: 32px; }

/* Section card*/
.section-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; scroll-margin-top: 110px; transition: box-shadow 0.2s, border-color 0.2s; backdrop-filter: blur(8px); }
.section-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,168,32,0.3); border-color: var(--card-border-hover); }
.section-head { display: flex; align-items: flex-start; gap: 14px; padding: 22px 28px 18px; border-bottom: 1px solid rgba(212,168,32,0.15); }
.section-head h2 { font-family:'Times New Roman', Times, serif; font-size: 18px; font-weight: 600; margin-bottom: 3px; color: var(--card-heading); text-transform: uppercase;}
.section-head p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 400; }
.section-body { padding: 28px; }

/* Prototype embed */
.proto-frame-wrap { border: 1px solid rgba(212,168,32,0.2); border-radius: var(--radius-sm); overflow: hidden; background: #0d1428; }
.proto-toolbar { padding: 10px 16px; background: rgba(26,31,60,0.9); border-bottom: 1px solid rgba(212,168,32,0.15); display: flex; align-items: center; gap: 10px; }
.proto-dots { display: flex; gap: 5px; }
.proto-dot { width: 10px; height: 10px; border-radius: 50%; }
.proto-url { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(212,168,32,0.15); border-radius: 4px; padding: 4px 10px; font-size: 13px; color: var(--card-muted); }
.proto-open-btn { font-size: 12px; font-weight: 500; color: var(--gold-bright); text-decoration: none; padding: 4px 12px; border: 1px solid rgba(212,168,32,0.3); border-radius: 4px; background: rgba(212,168,32,0.1); white-space: nowrap; transition: background 0.15s; }
.proto-open-btn:hover { background: rgba(212,168,32,0.2); }
.proto-frame-wrap iframe { width: 100%; height: 600px; border: none; display: block; }
.proto-note { margin-top: 12px; font-size: 13px; color: var(--card-muted); }
.proto-note a { color: var(--gold); }
.proto-note a:hover { color: var(--gold-bright); }

/* Video walkthrough */
.video-wrap {
margin-top: 28px;
border: 1px solid rgba(212,168,32,0.22);
border-radius: var(--radius-sm);
overflow: hidden;
background: #0d1428;
}
.video-header {
display: flex;
align-items: center;
gap: 10px;
padding: 11px 16px;
background: rgba(26,31,60,0.92);
border-bottom: 1px solid rgba(212,168,32,0.15);
}
.video-header-text strong {
display: block;
font-size: 16px;
font-weight: 600;
color: var(--gold-bright);
letter-spacing: 0.01em;
font-family: 'Times New Roman', Times, serif;
text-transform: uppercase;
word-spacing: 0.08em;
}
.video-header-text span { font-family: 'Playfair Display', serif; font-style: italic; font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 400; }
.video-wrap video {
width: 100%;
display: block;
max-height: 450px;
background: #000;
outline: none;
}
.video-footer {
padding: 9px 16px;
background: rgba(26,31,60,0.7);
font-size: 12px;
color: var(--card-muted);
font-style: italic;
display: flex;
align-items: center;
gap: 6px;
}

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 4px; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,168,32,0.15); border-radius: var(--radius-sm); padding: 18px; transition: border-color 0.15s, box-shadow 0.15s; }
.feature-card:hover { border-color: rgba(212,168,32,0.4); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.feature-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.feature-card h3 { font-size: 12px; font-weight: 600; color: var(--card-heading);  font-family: 'Times New Roman', Times, serif; text-transform: uppercase; word-spacing: 0.08em;}
.feature-card p { font-size: 13px; font-style: italic; line-height: 1.6; color: var(--card-text); text-align: justify; }
.feature-list { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.feature-list li { font-size: 13px; display: flex; gap: 7px; align-items: flex-start; font-style: italic; color: var(--card-text); text-align: justify; }
.feature-list li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* Story pop up */
/* Button that triggers the modal */
.story-reveal-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, rgba(212,168,32,0.15) 0%, rgba(13,43,69,0.6) 100%);
border: 1.5px solid rgba(212,168,32,0.45);
border-radius: 12px;
padding: 18px 28px;
cursor: pointer;
color: var(--gold-bright);
font-family: 'Playfair Display', serif;
font-size: 17px;
font-weight: 500;
letter-spacing: 0.02em;
transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
width: 100%;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
}
.story-reveal-btn::before {
content: '';
position: absolute;
inset: 0;
background: rgba(212,168,32,0.07);
opacity: 0;
transition: opacity 0.2s;
}
.story-reveal-btn:hover { border-color: rgba(212,168,32,0.75); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.story-reveal-btn:hover::before { opacity: 1; }
.story-reveal-btn:active { transform: translateY(0); }
.story-reveal-btn .btn-hint { font-size: 12px; font-style: italic; color: var(--card-muted); display: block; margin-top: 3px; font-family: 'Segoe UI', sans-serif; font-weight: 400; }

/* Pulsing ring animation on button */
@keyframes pulseRing {
0% { box-shadow: 0 0 0 0 rgba(212,168,32,0.4); }
70% { box-shadow: 0 0 0 12px rgba(212,168,32,0); }
100% { box-shadow: 0 0 0 0 rgba(212,168,32,0); }
}
.story-reveal-btn { animation: pulseRing 2.2s ease-out infinite; }
.story-reveal-btn:hover { animation: none; }

/* Modal overlay */
.story-modal-overlay {
position: fixed;
inset: 0;
background: rgba(6, 8, 22, 0.88);
z-index: 200;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 24px 16px 40px;
overflow-y: auto;
opacity: 0;
pointer-events: none;
transition: opacity 0.28s ease;
backdrop-filter: blur(6px);
}
.story-modal-overlay.open {
opacity: 1;
pointer-events: all;
}

/* Modal box */
.story-modal {
background: #151b38;
border: 1px solid rgba(212,168,32,0.35);
border-radius: 18px;
width: 100%;
max-width: 760px;
margin: auto;
box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,168,32,0.1);
transform: translateY(24px) scale(0.98);
transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.28s;
opacity: 0;
}
.story-modal-overlay.open .story-modal {
transform: translateY(0) scale(1);
opacity: 1;
}

.modal-header {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 22px 24px 18px;
border-bottom: 1px solid rgba(212,168,32,0.18);
border-radius: 18px 18px 0 0;
}
.modal-header-icon { font-size: 24px; padding-top: 2px; flex-shrink: 0; }
.modal-header-text { flex: 1; }
.modal-header h2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; color: var(--gold); margin-bottom: 3px; }
.modal-header p { font-size: 13px; font-style: italic; color: var(--card-muted); }
.modal-close-btn {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(212,168,32,0.25);
border-radius: 50%;
width: 36px; height: 36px;
display: flex; align-items: center; justify-content: center;
cursor: pointer;
color: var(--card-muted);
font-size: 18px;
flex-shrink: 0;
transition: background 0.15s, color 0.15s, border-color 0.15s;
font-weight: 300;
line-height: 1;
}
.modal-close-btn:hover { background: rgba(192,57,43,0.2); color: #e8755a; border-color: rgba(192,57,43,0.4); }

.modal-body { padding: 28px 28px 32px; }

/* Progress indicator */
.story-progress {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 22px;
font-size: 12px;
color: var(--card-muted);
font-style: italic;
}
.story-progress-bar {
flex: 1;
height: 3px;
background: rgba(212,168,32,0.15);
border-radius: 2px;
overflow: hidden;
}
.story-progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--gold), var(--gold-bright));
border-radius: 2px;
width: 0%;
transition: width 0.3s;
}

/* Story content */
.story-body { font-size: 14px; color: var(--card-text); line-height: 1.85; font-style: italic; }
.story-body p { margin-bottom: 16px; text-align: justify;}
.story-body p:last-child { margin-bottom: 0; }
.characters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.char-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,168,32,0.15); border-radius: var(--radius-sm); padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.char-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.char-info strong { display: block; font-size: 14px; font-weight: 500; color: var(--card-heading); font-family: 'Times New Roman', Times, serif;}
.char-info span { font-size: 12px; color: var(--card-muted); }
.dialogue { background: rgba(13,43,69,0.5); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 12px 16px; margin: 12px 0; font-style: italic; font-size: 14px; color: var(--card-text); line-height: 1.65; text-align: justify; }
.dialogue strong { color: var(--gold); font-style: normal; font-size: 12px; display: block; margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-family: 'Times New Roman', Times, serif;}
.story-feature { background: rgba(212,168,32,0.08); border: 1px solid rgba(212,168,32,0.25); border-radius: var(--radius-sm); padding: 14px 16px; margin: 14px 0; }
.story-feature-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold-bright); margin-bottom: 6px; font-style: normal; font-family: 'Times New Roman', Times, serif; }
.story-feature p { font-size: 14px; color: var(--card-text); margin: 0; line-height: 1.6; }

/* Modal footer */
.modal-footer {
padding: 16px 28px 24px;
border-top: 1px solid rgba(212,168,32,0.12);
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.modal-footer-note { font-size: 12px; font-style: italic; color: var(--card-muted); }
.modal-close-main {
background: rgba(212,168,32,0.12);
border: 1px solid rgba(212,168,32,0.3);
border-radius: var(--radius-sm);
padding: 8px 20px;
color: var(--gold-bright);
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
.modal-close-main:hover { background: rgba(212,168,32,0.22); }

/* Wishlist */
.wish-list { display: flex; flex-direction: column; gap: 12px; }
.wish-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,168,32,0.15); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; transition: border-color 0.15s; }
.wish-item:hover { border-color: rgba(212,168,32,0.4); }
.wish-num { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold); flex-shrink: 0; line-height: 1; padding-top: 1px; min-width: 22px; }
.wish-text strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 3px; color: var(--card-heading); font-family: 'Times New Roman', Times, serif;}
.wish-text p { font-size: 13px; color: var(--card-muted); line-height: 1.55; margin: 0; font-style: italic; text-align: justify; }
/* CTA Banner */
.cta-banner { background: rgba(13,43,69,0.85); border: 1px solid rgba(212,168,32,0.3); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; backdrop-filter: blur(8px); }
.cta-banner-text strong { display: block; font-family:'Times New Roman', Times, serif; font-size: 14px; color: var(--gold-bright); margin-bottom: 6px; text-transform: uppercase;}
.cta-banner-text p { font-size: 13px; font-style: italic; color: var(--card-muted); line-height: 1.6; text-align: justify; }
.cta-btn { background: var(--red); color: white; text-decoration: none; border-radius: var(--radius-sm); padding: 12px 22px; font-size: 13px; font-weight: 500; white-space: nowrap; transition: background 0.15s; font-family: 'Times New Roman', Times, serif;}
.cta-btn:hover { background: #a93226; }

/* Goto */
.goto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(125px, 1fr)); gap: 16px; margin-left: 30px; margin-top: 8px; }
.goto { border: 1px solid var(--card-border); border-radius: var(--radius); background: var(--card-bg); padding: 18px; cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; backdrop-filter: blur(8px); }
.goto:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.959), 0 0 0 1px rgb(163,127,20); border-color: var(--card-border-hover); background: var(--card-bg-hover); }
.goto-link { font-size: 14px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; letter-spacing: 0.2em; font-family: 'Times New Roman', Times, serif; text-transform: uppercase;}

#back-top { position: fixed; bottom: 24px; right: 24px; width: 40px; height: 40px; background: var(--card-bg); color: var(--gold-bright); border: 1px solid rgba(212,168,32,0.3); border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s, background 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { background: rgba(212,168,32,0.2); }


footer {
background: rgba(26,31,60,0.97);
text-align: center;
padding: 28px 48px;
border-top: 1px solid rgba(212,168,32,0.2);
font-size: 13px;
color: var(--card-muted);
font-family: 'Times New Roman', Times, serif; 
word-spacing: 0.2em; 
letter-spacing: 0.04em;
}
footer strong { color: var(--card-text); font-weight: 600; }


/* Responsive */
@media (max-width: 1400px) { .main { padding: 48px 80px; } }
@media (max-width: 1024px) { .navbar { padding: 0 24px; } .nav-links a { font-size: 12px; padding: 6px 9px; } .hero { padding: 24px 32px 36px; } .anchor-nav { padding: 0 16px; } .main { padding: 40px 40px; } footer { padding: 24px 32px; } }
@media (max-width: 768px) {
.nav-links { display: none; } .ham-btn { display: flex; } .navbar { padding: 0 16px; height: 54px; }
.mobile-nav { top: 54px; } .anchor-nav { top: 54px; padding: 0 4px; } .anchor-nav a { font-size: 12px; padding: 11px 10px; }
.hero { padding: 20px 20px 32px; } .hero h1 { font-size: 24px; } .hero p { font-size: 13px; }
.main { padding: 24px 16px 48px; gap: 20px; } .section-body { padding: 18px 16px; }
.feature-grid { grid-template-columns: 1fr; } .proto-frame-wrap iframe { height: 420px; }
.cta-banner { flex-direction: column; } footer { padding: 20px 16px; font-size: 13px; }
.story-modal { margin: 8px; }
.modal-body { padding: 20px 16px 24px; }
.modal-header { padding: 16px 16px 14px; }
.modal-footer { padding: 12px 16px 20px; }
.video-wrap video { max-height: 320px; }
}
@media (max-width: 380px) { .hero h1 { font-size: 20px; } .main { padding: 16px 12px 40px; } .proto-frame-wrap iframe { height: 340px; } }
