/* GDS site shell v1 - shared chrome + content styles for child pages.
   Matches the homepage design system (green era, footage-dark).
   Linked as the ONLY page stylesheet on About / Contact / Legal pages. */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #07090C; --bg2: #14171B; --bg3: #1D2126;
    --text: #EFEFF1; --text2: #ADADB8; --muted: #6C7580;
    --brand: #7AC943; --teal: #3ADBB4; --green: #00E676; --lime: #9BE84C;
    --line: rgba(255,255,255,0.10);
    /* legacy tokens used by the chatbot block */
    --bg-primary: #0E0E10; --bg-secondary: #18181B; --bg-tertiary: #1F1F23;
    --text-primary: #EFEFF1; --text-secondary: #ADADB8; --text-muted: #68687A;
    --accent-primary: #0071E3; --accent-secondary: #00D4FF; --accent-green: #00E676;
    --border-subtle: rgba(255, 255, 255, 0.08); --glass-bg: rgba(24, 24, 27, 0.6);
}
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body { background: var(--bg); color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6; -webkit-font-smoothing: antialiased; }
/* Ambient field: gives translucent panels something to blur, hero-page DNA */
body::before { content: ""; position: fixed; inset: -20%; z-index: -1; pointer-events: none;
    background:
        radial-gradient(34% 30% at 12% 8%, rgba(122,201,67,.10), transparent 70%),
        radial-gradient(28% 26% at 88% 18%, rgba(58,219,180,.07), transparent 70%),
        radial-gradient(36% 34% at 70% 92%, rgba(122,201,67,.06), transparent 70%);
    filter: blur(48px); }
body::after { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%); }
a { color: var(--brand); }
img { max-width: 100%; }

/* ============ NAV ============ */
.shellnav { position: sticky; top: 0; z-index: 100; background: rgba(7,9,12,.9);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08); }
.shellnav .nav-in { display: flex; justify-content: space-between; align-items: center;
    max-width: 1320px; margin: 0 auto; padding: 1rem 2.2rem; }
.shellnav .brand { display: flex; align-items: center; gap: .65rem; font-weight: 700;
    font-size: 1.02rem; letter-spacing: -.02em; text-decoration: none; color: var(--text); }
.shellnav .brand img { height: 30px; width: auto; }
.shellnav .nav-links { display: flex; gap: 2rem; font-size: .92rem; color: var(--text2); align-items: center; }
.shellnav .nav-links > a { text-decoration: none; color: var(--text2); }
.shellnav .nav-links > a:hover { color: #fff; }
.navdrop { position: relative; cursor: pointer; color: var(--text2); }
.navdrop > span { display: inline-block; padding: .35rem 0; }
.navdrop .dd { position: absolute; top: 100%; right: -12px; padding-top: 12px;
    display: none; z-index: 60; }
.navdrop:hover .dd, .navdrop:focus-within .dd { display: block; }
.navdrop .ddp { min-width: 250px; background: rgba(10,13,16,.97);
    border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: .5rem; display: flex; flex-direction: column;
    box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.navdrop .ddp a { color: var(--text); font-size: .92rem; padding: .6rem .8rem;
    border-radius: 8px; text-decoration: none; }
.navdrop .ddp a:hover { background: rgba(122,201,67,.14); }
.navdrop .ddp a span { display: block; color: var(--muted); font-size: .74rem; }
.menu-btn { display: none; background: none; border: 1px solid rgba(255,255,255,.25);
    color: var(--text); border-radius: 8px; padding: .45rem .8rem; font-size: .85rem; cursor: pointer; }
.mobile-panel { display: none; position: absolute; top: 100%; left: 1rem; right: 1rem;
    background: rgba(10,13,16,.95); border: 1px solid rgba(255,255,255,.14); border-radius: 14px;
    backdrop-filter: blur(18px); padding: .6rem; z-index: 70; flex-direction: column; }
.mobile-panel a { color: var(--text); text-decoration: none; padding: .75rem .8rem;
    border-radius: 8px; font-size: .95rem; }
.mobile-panel a:hover { background: rgba(122,201,67,.14); }
.mobile-panel.open { display: flex; }

/* ============ PAGE HERO ============ */
.hero-section { padding: 5rem 1rem 3rem; text-align: center; position: relative;
    background: radial-gradient(60% 90% at 50% 0%, rgba(122,201,67,.09), transparent 70%); }
.hero-title { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; letter-spacing: -.025em;
    font-weight: 750; margin-bottom: .9rem; }
.hero-subtitle { color: var(--text2); font-size: 1.05rem; max-width: 58ch; margin: 0 auto; }
.last-updated { color: var(--muted); font-size: .82rem; margin-top: 1rem; }

/* ============ CONTENT WRAP ============ */
.pagewrap { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem 5rem; }
.pagewrap.narrow { max-width: 860px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* Legal articles */
.privacy-section, .terms-section, .dns-section { margin: 2.4rem 0; }
.privacy-section h2, .terms-section h2, .dns-section h2 {
    font-size: 1.3rem; letter-spacing: -.01em; margin-bottom: .8rem; color: var(--text);
    padding-left: .9rem; border-left: 3px solid var(--brand); }
.privacy-section h3, .terms-section h3, .dns-section h3 {
    font-size: 1.02rem; margin: 1.2rem 0 .5rem; color: var(--text); }
.privacy-section p, .terms-section p, .dns-section p { color: var(--text2); margin-bottom: .9rem; }
.privacy-section ul, .terms-section ul, .dns-section ul,
.privacy-section ol, .terms-section ol, .dns-section ol { color: var(--text2); margin: 0 0 1rem 1.4rem; }
.privacy-section li, .terms-section li, .dns-section li { margin-bottom: .45rem; }
.privacy-section strong, .terms-section strong, .dns-section strong { color: var(--text); }
.privacy-section table, .terms-section table, .dns-section table {
    width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .9rem; }
.privacy-section th, .terms-section th, .dns-section th,
.privacy-section td, .terms-section td, .dns-section td {
    border: 1px solid var(--line); padding: .55rem .7rem; text-align: left; color: var(--text2); }

/* ============ CONTACT ============ */
.contact-section { padding-top: 1rem; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.4rem; align-items: start; }
.contact-form-wrapper { border: 1px solid var(--line); border-radius: 15px;
    background: rgba(20,23,27,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 2rem; }
.contact-form-title { font-size: 1.35rem; letter-spacing: -.015em; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-label { display: block; font-size: .82rem; color: var(--text2); margin-bottom: .4rem; font-weight: 600; }
.form-input, .form-textarea { width: 100%; background: #0C0F13; color: var(--text);
    border: 1px solid rgba(255,255,255,.14); border-radius: 9px; padding: .7rem .85rem;
    font-size: .95rem; font-family: inherit; transition: border-color .2s; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--brand); }
.interest-selector { display: flex; flex-wrap: wrap; gap: .5rem; }
.interest-option { background: #0C0F13; color: var(--text2); border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px; padding: .45rem .95rem; font-size: .84rem; cursor: pointer;
    font-family: inherit; transition: all .2s; }
.interest-option:hover { border-color: rgba(122,201,67,.5); }
.interest-option.selected { background: rgba(122,201,67,.16); color: var(--brand);
    border-color: var(--brand); }
.form-submit { background: var(--brand); color: #071008; border: none; border-radius: 9px;
    padding: .85rem 2rem; font-weight: 700; font-size: .98rem; cursor: pointer;
    font-family: inherit; transition: filter .2s; }
.form-submit:hover { filter: brightness(1.08); }
.form-submit:disabled { opacity: .6; cursor: wait; }
.message { border: 1px solid rgba(0,230,118,.4); background: rgba(0,230,118,.08);
    color: var(--text); border-radius: 10px; padding: .85rem 1rem; margin-bottom: 1.1rem; font-size: .92rem; }
.message.error { border-color: rgba(255,90,78,.5); background: rgba(255,90,78,.08); }
.email-error { color: #FF7A6E; font-size: .8rem; margin-top: .35rem; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card { border: 1px solid var(--line); border-radius: 13px;
    background: rgba(20,23,27,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 1.25rem 1.4rem; }
.sidebar-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted); font-weight: 700; margin-bottom: .4rem; }
.sidebar-email { color: var(--brand); text-decoration: none; font-weight: 600; word-break: break-all; }
.sidebar-card p { color: var(--text2); font-size: .92rem; }
.sidebar-note { color: var(--muted); font-size: .82rem; line-height: 1.5; }

/* ============ ABOUT ============ */
.founder-section { display: grid; grid-template-columns: 300px 1fr; gap: 2.6rem;
    align-items: start; margin: 2.5rem 0 3.5rem; }
.founder-image-container { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.founder-image { width: 100%; display: block; }
.founder-content h2 { font-size: 1.7rem; letter-spacing: -.02em; margin-bottom: .25rem; }
.founder-title { color: var(--brand); font-weight: 650; font-size: .95rem; margin-bottom: 1.1rem; }
.founder-bio p { color: var(--text2); margin-bottom: .9rem; max-width: 62ch; }
.social-links { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-link { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
    display: inline-flex; align-items: center; justify-content: center; color: var(--text2);
    text-decoration: none; transition: all .2s; }
.social-link:hover { border-color: var(--brand); color: var(--brand); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.expertise-section { margin: 3.5rem 0; }
.section-title { font-size: 1.55rem; letter-spacing: -.015em; margin-bottom: 1.6rem; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.expertise-card { border: 1px solid var(--line); border-radius: 13px;
    background: rgba(20,23,27,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 1.3rem 1.4rem; }
.expertise-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--text); }
.expertise-card p { color: var(--text2); font-size: .87rem; line-height: 1.5; }
.expertise-card ul { color: var(--text2); font-size: .87rem; margin-left: 1.1rem; }
.expertise-card li { margin-bottom: .35rem; }
.mission-section { border: 1px solid var(--line); border-radius: 15px; margin: 3.5rem 0;
    padding: 2.4rem 2rem; text-align: center;
    background: radial-gradient(ellipse at top, rgba(122,201,67,.10), transparent 65%), var(--bg2); }
.mission-section h2 { font-size: 1.5rem; margin-bottom: .8rem; }
.mission-section p { color: var(--text2); max-width: 64ch; margin: 0 auto .8rem; }

/* ============ CTA + FOOTER ============ */
.btn { display: inline-block; padding: .85rem 1.8rem; border-radius: 9px; font-weight: 650;
    font-size: .95rem; text-decoration: none; }
.btn-solid { background: var(--brand); color: #071008; }
.foot { max-width: 1180px; margin: 4.5rem auto 0; padding: 2.6rem 1rem 0;
    border-top: 1px solid rgba(255,255,255,.09);
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 2rem; font-size: .88rem; }
.foot .fbrand { display: flex; align-items: center; gap: .55rem; font-weight: 700; color: var(--text); }
.foot .fbrand img { height: 26px; }
.foot .ftag { color: var(--muted); font-size: .82rem; max-width: 26ch; line-height: 1.5; margin-top: .7rem; }
.foot b { font-size: .72rem; letter-spacing: .12em; color: var(--text2); }
.foot .col { display: flex; flex-direction: column; gap: .55rem; margin-top: .8rem; }
.foot .col a { color: var(--text2); text-decoration: none; font-size: .86rem; padding: .15rem 0; }
.foot .col a:hover { color: var(--brand); }
.footbar { max-width: 1180px; margin: 2rem auto 0; padding: 1.2rem 1rem 2.4rem;
    border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between;
    color: var(--muted); font-size: .8rem; flex-wrap: wrap; gap: .6rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .shellnav .nav-links { display: none; }
    .menu-btn { display: block; }
    .hero-section { padding: 3.5rem 1rem 2.2rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .founder-section { grid-template-columns: 1fr; }
    .founder-image-container { max-width: 320px; }
    .expertise-grid { grid-template-columns: 1fr 1fr; }
    .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .expertise-grid { grid-template-columns: 1fr; }
}
