:root {
  
  --color-teal:        #0A5F5C;
  --color-teal-mid:    #0d7a76;
  --color-teal-light:  #12a09a;
  --color-teal-xlt:    rgba(10, 95, 92, 0.08);
  --color-navy:        #1A2B3C;
  --color-navy-mid:    #243547;

  
  --color-amber:       #E67E22;
  --color-amber-dark:  #cf6d17;
  --color-amber-tint:  #FFFAF5;
  --color-amber-wash:  #FFF3E6;
  --color-sage:        #20a856;
  --color-sage-dark:   #1a8f49;

  
  --color-white:       #FFFFFF;
  --color-off-white:   #F8F9FA;
  --color-gray-50:     #F9FAFB;
  --color-gray-100:    #F3F4F6;
  --color-gray-200:    #E5E7EB;
  --color-gray-300:    #D1D5DB;
  --color-gray-400:    #9CA3AF;
  --color-gray-500:    #6B7280;
  --color-gray-700:    #374151;
  --color-gray-900:    #111827;

  
  --color-success:     #20a856;
  --color-error:       #E74C3C;

  
  --font-primary:      'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:      'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  
  --text-xs:    0.75rem;   
  --text-sm:    0.875rem;  
  --text-base:  1rem;      
  --text-md:    1.0625rem; 
  --text-lg:    1.125rem;  
  --text-xl:    1.25rem;   
  --text-2xl:   1.5rem;    
  --text-3xl:   1.875rem;  
  --text-4xl:   2.25rem;   

  
  --sp-1:   0.5rem;    
  --sp-2:   1rem;      
  --sp-3:   1.5rem;    
  --sp-4:   2rem;      
  --sp-5:   3rem;      
  --sp-6:   4rem;      
  --sp-7:   5rem;      
  --sp-8:   6rem;      
  --sp-9:   8rem;      
  --sp-10: 10rem;      

  
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg:  0 10px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-xl:  0 18px 52px rgba(0, 0, 0, 0.12);

  
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.22s var(--ease-out);
  --trans-fast: all 0.15s ease-out;
  --trans-med:  all 0.28s var(--ease-out);

  
  --max-width:  1600px;
  --hdr-height: 100px;

  
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-gray-700);
  background: var(--color-amber-tint);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--color-teal);
}

h3 {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--color-navy);
}

h4 {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-gray-900);
}

h5 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gray-900);
}

h6 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}

p {
  font-size: var(--text-md);
  line-height: 1.78;
  color: var(--color-gray-500);
}

strong { font-weight: 700; }
em     { font-style: italic; }

.on-dark h2 { color: var(--color-white); }
.on-dark h3 { color: var(--color-white); }
.on-dark p  { color: rgba(255, 255, 255, 0.58); }

.lead {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  line-height: 1.65;
  color: var(--color-gray-500);
  font-weight: 400;
}

.on-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.g-text-teal {
  background: linear-gradient(120deg, var(--color-teal) 0%, var(--color-teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-text-amber {
  background: linear-gradient(120deg, var(--color-amber) 0%, #f0a045 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-text-sage {
  background: linear-gradient(120deg, var(--color-sage) 0%, #52d98a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.section {
  padding-block: var(--sp-9);
}

.section--alt  { background: var(--color-amber-wash); }
.section--dark { background: var(--color-navy); }

.sh             { margin-bottom: var(--sp-6); }
.sh-c           { text-align: center; }
.sh-c .sh-sub   { margin-inline: auto; }
.sh-sub {
  max-width: 640px;
  margin-top: var(--sp-2);
  font-size: var(--text-lg);
  line-height: 1.75;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  /* default = teal */
  background: var(--color-teal-xlt);
  color: var(--color-teal);
  border: 1px solid rgba(10, 95, 92, 0.18);
}
.pill-teal  { background: var(--color-teal-xlt); color: var(--color-teal); border: 1px solid rgba(10, 95, 92, 0.18); }
.pill-amber { background: rgba(230, 126, 34, 0.10); color: var(--color-amber-dark); border: 1px solid rgba(230, 126, 34, 0.22); }
.pill-white { background: rgba(255, 255, 255, 0.10); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2); }
.pill-navy  { background: rgba(26, 43, 60, 0.07); color: var(--color-navy); border: 1px solid rgba(26, 43, 60, 0.14); }

/* Pills inside dark sections automatically flip to white variant */
.on-dark .pill,
[class*="on-dark"] .pill {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  border-color: rgba(255, 255, 255, 0.20);
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-sage));
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.125rem;
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: var(--trans-med);
}
.btn i                      { font-size: 0.85em; transition: transform 0.2s ease; }
.btn:hover i.fa-arrow-right { transform: translateX(3px); }

.btn-primary {
  background: var(--color-amber);
  color: var(--color-white);
  box-shadow: 0 4px 22px rgba(230, 126, 34, 0.38);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 126, 34, 0.48);
}

.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 4px 22px rgba(10, 95, 92, 0.30);
}
.btn-teal:hover, .btn-teal:focus-visible {
  background: var(--color-teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 95, 92, 0.40);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.50);
}

.btn-outline {
  background: transparent;
  color: var(--color-teal);
  border: 2px solid var(--color-gray-200);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--color-teal);
  background: var(--color-teal-xlt);
}

.btn-outline-amber {
  background: transparent;
  color: var(--color-amber);
  border: 2px solid rgba(230, 126, 34, 0.40);
}
.btn-outline-amber:hover, .btn-outline-amber:focus-visible {
  background: var(--color-amber);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.35);
}

.la {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-teal);
  transition: gap 0.2s ease, color 0.15s ease;
}
.la:hover       { gap: 0.7rem; color: var(--color-teal-mid); }
.la i           { font-size: 0.85em; }
.on-dark .la    { color: rgba(255, 255, 255, 0.75); }
.on-dark .la:hover { color: var(--color-white); }

:focus-visible {
  outline: 3px solid var(--color-amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-2);
  padding: 0.5rem 1rem;
  background: var(--color-amber);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

#hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--hdr-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#hdr.solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--color-gray-200), 0 4px 28px rgba(0, 0, 0, 0.06);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hdr-height);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

/* Subtle lift in transparent state so the white logo doesn't vanish into a dark hero */
#hdr:not(.solid) .logo-img {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.22));
}

.logo-img--footer {
  height: 144px;
}

/* Vertical divider between logo and nav links */
.nav-divider {
  width: 1px;
  height: 36px;
  margin: 0 1.25rem;
  flex-shrink: 0;
  border-radius: 1px;
}
#hdr:not(.solid) .nav-divider { background: rgba(255, 255, 255, 0.22); }
#hdr.solid .nav-divider       { background: var(--color-gray-200); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--trans-fast);
  letter-spacing: 0.01em;
}
#hdr:not(.solid) .nav a       { color: rgba(255, 255, 255, 0.85); }
#hdr:not(.solid) .nav a:hover { color: var(--color-white); background: rgba(255, 255, 255, 0.10); }
#hdr.solid .nav a             { color: var(--color-gray-700); }
#hdr.solid .nav a:hover       { color: var(--color-teal); background: var(--color-teal-xlt); }

.nav-cta {
  margin-left: 1rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--color-amber);
  color: var(--color-white) !important;
  box-shadow: 0 3px 14px rgba(230, 126, 34, 0.38);
  transition: var(--trans-fast);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-amber-dark) !important; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(230, 126, 34, 0.45); }

.ham {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.18s ease;
}
#hdr:not(.solid) .ham       { color: var(--color-white); }
#hdr:not(.solid) .ham:hover { background: rgba(255, 255, 255, 0.12); }
#hdr.solid .ham             { color: var(--color-gray-700); }
#hdr.solid .ham:hover       { background: var(--color-gray-100); }

.drawer {
  display: none;
  position: fixed;
  top: var(--hdr-height);
  inset-inline: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
  z-index: 999;
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem) 2rem;
}
.drawer.open { display: block; }

.drawer a {
  display: block;
  padding: 0.9375rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
  transition: color 0.15s ease;
}
.drawer a:hover { color: var(--color-teal); }
.drawer a:last-child { border-bottom: none; }

.drawer .d-cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: var(--color-amber);
  color: var(--color-white) !important;
  font-weight: 700;
  border-radius: var(--radius);
  border-bottom: none;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.35);
}
.drawer .d-cta:hover { background: var(--color-amber-dark) !important; }

@media (max-width: 1024px) {
  .nav          { display: none; }
  .nav-cta      { display: none; }
  .nav-divider  { display: none; }
  .ham          { display: flex; }
}

#ftr {
  background: var(--color-gray-900);
  color: rgba(255, 255, 255, 0.60);
  padding-top: var(--sp-7);
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1.4fr 1.5fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
}

.fbrand .logo-words strong { color: var(--color-white); }
.fbrand .logo-words small  { color: rgba(255, 255, 255, 0.35); }
.ftag {
  margin-top: 1.375rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.72;
}


.fcol h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 1.5rem;
}
.fcol ul li { margin-bottom: 0.75rem; }
.fcol ul li a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.15s ease;
}
.fcol ul li a:hover { color: var(--color-white); }

.frow {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9375rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.52);
}
.frow i {
  color: var(--color-teal-mid);
  width: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.fbot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-block: 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.fbot p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.28); margin: 0; }

.fbuilt-inline a { color: var(--color-teal-mid); font-weight: 600; transition: color 0.15s ease; }
.fbuilt-inline a:hover { color: var(--color-teal-light); }


@media (max-width: 1100px) {
  .ftr-grid { grid-template-columns: 1.6fr 1fr; gap: var(--sp-5); }
}
@media (max-width: 767px) {
  .ftr-grid { grid-template-columns: 1fr; }
}

.snackbar-container {
  position: fixed;
  z-index: 9998;
  pointer-events: none;

  
  top: calc(var(--hdr-height) + 20px);
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  width: 100%;
  max-width: 520px;
  padding-inline: 1rem;
}

.snackbar {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 0.75rem;

  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.10);

  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-white);

  
  opacity: 0;
  transform: translateY(-110%);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.snackbar.snackbar--show {
  opacity: 1;
  transform: translateY(0);
}
.snackbar.snackbar--hide {
  opacity: 0;
  transform: translateY(-110%);
}

.snackbar--success { background: var(--color-success); }
.snackbar--error   { background: var(--color-error); }

.snackbar-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.snackbar-msg {
  flex: 1;
  line-height: 1.45;
}

.snackbar-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  font-size: 0.75rem;
  transition: background 0.15s ease;
  cursor: pointer;
}
.snackbar-close:hover { background: rgba(255, 255, 255, 0.32); }
.snackbar-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .snackbar-container {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    transform: none;
    align-items: stretch;
  }
  .snackbar {
    transform: translateY(110%);
  }
  .snackbar.snackbar--show {
    transform: translateY(0);
  }
  .snackbar.snackbar--hide {
    transform: translateY(110%);
  }
}

.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.rv.in { opacity: 1; transform: translateY(0); }
.d1    { transition-delay: 0.08s; }
.d2    { transition-delay: 0.16s; }
.d3    { transition-delay: 0.24s; }
.d4    { transition-delay: 0.32s; }

/* ── Global responsive baseline ─────────────────────────────────────────
   Breakpoints mirror real device families:
   1800+   TV / ultrawide
   1440    15" laptop
   1200    13" smaller laptop
   1024    tablet landscape / hamburger nav triggers
   768     tablet portrait
   640     large phone (iPhone Plus / Pro Max)
   390     standard phone (iPhone 14 Pro)
   320     small phone (iPhone SE)
──────────────────────────────────────────────────────────────────────── */

/* Tablet portrait and below */
@media (max-width: 767px) {
  .section { padding-block: var(--sp-7); }

  h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  h3 { font-size: clamp(1rem, 3.5vw, 1.25rem); }

  .sh-sub { font-size: 1rem; }

  /* Footer */
  .ftr-grid { grid-template-columns: 1fr; }
  .fbot     { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* Large phone (iPhone Pro Max, Pixel 8 Pro) */
@media (max-width: 639px) {
  :root { --hdr-height: 72px; }

  .logo-img { height: 60px; }

  .section { padding-block: var(--sp-6); }

  h2 { font-size: clamp(1.625rem, 7vw, 2.25rem); }

  .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }

  p { text-align: justify; hyphens: auto; }
}

/* Standard phone */
@media (max-width: 389px) {
  :root { --hdr-height: 64px; }

  .logo-img { height: 52px; }

  .section { padding-block: var(--sp-5); }

  h2 { font-size: clamp(1.5rem, 8vw, 2rem); }
  h3 { font-size: 1rem; }

  .btn { width: 100%; justify-content: center; }

  /* Footer stack */
  .fbot { gap: 0.25rem; }
}
