/* =========================================================
   TradingOath — global.css (Light / Google-product theme)
   Shared design tokens + base patterns for every page.
   ========================================================= */

    @font-face {
     font-family: 'Urbanist';
     font-style: italic;
     font-weight: 100 800;
     font-display: swap;
     src: url(https://fonts.gstatic.com/s/urbanist/v15/L0x4DF02iFML4hGCyMqgXSFsjlC0V7q7Ag.woff2) format('woff2');
     unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
 }

 @font-face {
     font-family: 'Urbanist';
     font-style: italic;
     font-weight: 100 800;
     font-display: swap;
     src: url(https://fonts.gstatic.com/s/urbanist/v15/L0x4DF02iFML4hGCyMqgXS9sjlC0V7o.woff2) format('woff2');
     unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
 }

 @font-face {
     font-family: 'Urbanist';
     font-style: normal;
     font-weight: 100 800;
     font-display: swap;
     src: url(https://fonts.gstatic.com/s/urbanist/v15/L0x-DF02iFML4hGCyMqrbS1miXK2Z7s.woff2) format('woff2');
     unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
 }

 @font-face {
     font-family: 'Urbanist';
     font-style: normal;
     font-weight: 100 800;
     font-display: swap;
     src: url(https://fonts.gstatic.com/s/urbanist/v15/L0x-DF02iFML4hGCyMqlbS1miXK2.woff2) format('woff2');
     unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
 }

 
:root {
  /* --- Color (Material-inspired light palette) --- */
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fa;
  --border: #e8eaed;
  --border-strong: #dadce0;

  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-muted: #80868b;

  --white: #ffffff;
  --blue: #1a73e8;
  --blue-bright: #4285f4;
  --blue-tint: #e8f0fe;
  --red: #d93025;
  --red-tint: #fce8e6;
  --yellow: #f9ab00;
  --yellow-tint: #fef7e0;
  --green: #188038;
  --green-tint: #e6f4ea;

  /* --- Type --- */
  /* --font-display: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Roboto Mono", "Courier New", monospace; */

  --font-display: "Urbanist";
  --font-body: "Urbanist";
  --font-mono: "Urbanist";

  /* --- Shape --- */
  --radius-soft: 20px;
  --radius-card: 16px;
  --radius-pill: 999px;
  --radius-8: 8px;

  /* --- Layout --- */
  --container: 1180px;
  --shadow-1: 0 1px 2px rgba(60, 64, 67, 0.08), 0 1px 3px rgba(60, 64, 67, 0.1);
  --shadow-2: 0 2px 6px rgba(60, 64, 67, 0.1), 0 4px 16px rgba(60, 64, 67, 0.08);
  --shadow-3: 0 8px 24px rgba(60, 64, 67, 0.12), 0 16px 40px rgba(60, 64, 67, 0.1);

 
  --font-40: 40px;
  --font-24: 24px;
  --font-20: 20px;
  --font-16: 16px;
  --font-14: 14px; 
  --font-12: 12px;

  
  
  --dim-92: 92px;
  --dim-64: 64px;
  --dim-48: 48px;
  --dim-32: 32px;
  --dim-24: 24px;
  --dim-20: 20px;
  --dim-16: 16px;
  --dim-12: 12px;
  --dim-8: 8px;
  --dim-4: 4px;
  --dim-2: 2px;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--font-16);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; 
  font-weight: 600 !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary); 
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--radius-8);
}

/* --- Layout helpers --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--dim-24);
}

.section {
  padding: 96px 0;
}

@media (max-width: 720px) {
  .section {
    padding: var(--dim-64) 0;
  }
}

.section-alt {
  background: var(--bg-alt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--dim-8);
  font-family: var(--font-mono); 
  font-size: var(--font-12);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue); 
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--dim-48);
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: var(--dim-12);
}

.section-head p {
  margin-top: var(--dim-16);
  color: var(--text-secondary); 
  font-size: var(--font-16);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--dim-8);
  padding: var(--dim-12) var(--dim-24);
  border-radius: var(--radius-pill);  
  font-size: var(--font-16);
  transition: box-shadow 0.15s ease, background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: var(--shadow-1);
}

.btn-primary:hover {
  background: #1765cc;
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: #ffffff;
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: #c0c4c9;
}

.btn-google {
  background: #ffffff;
  color: #3c4043;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-1);
}

.btn-google:hover {
  box-shadow: var(--shadow-2);
}

/* --- Nav --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--dim-8);
  font-family: var(--font-display); 
  font-size: var(--font-20);
  color: var(--text-primary);
}

.brand-mark {
  width: 30px;
  height: 30px;
}
.nav-logo {
    
  height: 25px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--dim-32);
}

.nav-links a {
  
  font-size: var(--font-14);
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--dim-16);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: transform 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links a {
    width: 100%;
    padding:  var(--dim-16)  var(--dim-24);
    border-top: 1px solid var(--border);
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* --- FAQ / accordion pattern (shared) --- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:  var(--dim-16);
  padding:  var(--dim-24)  var(--dim-4);
  text-align: left; 
  font-size: var(--font-16);
  color: var(--text-primary);
  font-weight: 700 !important;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0  var(--dim-4)  var(--dim-24);
  color: var(--text-secondary); 
  font-size: var(--font-16);
  max-width: 640px;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding:  var(--dim-64) 0  var(--dim-32);
  background: var(--bg-alt);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:  var(--dim-32);
  padding-bottom:  var(--dim-32);
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  margin-top:  var(--dim-16);
  color: var(--text-muted); 
  font-size: var(--font-16);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body); 
  font-size: var(--font-12);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom:  var(--dim-16); 
}

.footer-col a {
  display: block;
  padding: 6px 0; 
  font-size: var(--font-14);
  color: var(--text-secondary);
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top:  var(--dim-24); 
  font-size: var(--font-12);
  color: var(--text-muted);
  flex-wrap: wrap;
  gap:  var(--dim-12);
}

@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
