
:root{
  --bg:#ffffff;
  --text:#0e1116;
  --muted:#5b6777;
  --brand:#46C6DD;
  --brand2:#e7ff8d;
  --card:#ffffff;
}



@font-face{
  font-family:'FinalSix';
  src:url('../fonts/FinalSix-Regular.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'FinalSix';
  src:url('../fonts/FinalSix-Bold.woff2') format('woff2');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

/* ===== HERO layout ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 180px 0 300px; /* increased height to show full image */
  overflow: hidden;
  background-color: #fff;
  padding-bottom: 520px;      
}

/* === Background image === */
.hero-mock {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;               /* allow full image height */
  min-height: 100%;           /* fills section vertically */
  object-fit: contain;        /* show entire image, no cropping */
  z-index: 0;
  opacity: 1;
  object-position: center 65%; 
}

/* Optional: keep light gradient fade for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.7) 30%,
    rgba(255,255,255,0.1) 100%
  );
  z-index: 1;
}

/* === Text and button layer === */
.hero-inner {
  position: relative;
  z-index: 2;
}

/* === Title and subtitle === */
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #0e1116;
  margin-bottom: 10px;
}

.hero .subtitle {
  color: #4b5563;
  margin-bottom: 22px;
  font-size: 18px;
}

/* === Button === */
.hero .btn.primary {
  background-color: #2fc0d6;
  color: white;
  font-weight: 600;
  font-size: 18px;
  border-radius: 40px;
  padding: 14px 36px;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 200px; /* reduce spacing for mobile */
  }
  .hero h1 { font-size: 32px; }
  .hero .subtitle { font-size: 16px; }
  .hero-mock {
    width: 120%;
  }
}

/* Header brand/logo */
.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 34px;          /* tweak this to fit your header */
  width: auto;
  display: block;
}

/* Hide the old dot if that rule still exists anywhere */
.logo-dot { display: none; }

/* Smaller screens – slightly smaller logo */
@media (max-width: 640px) {
  .brand-logo { height: 26px; }
}


*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text)}
body, p, a, li, button, input{font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif}
h1,h2,h3,.brand span{font-family:'FinalSix', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;letter-spacing:.2px}

.container{width:min(1100px,92%);margin-inline:auto}

.topbar{position:sticky;top:0;background:#fff8;backdrop-filter:saturate(1.2) blur(8px);border-bottom:1px solid #e7ebf0;z-index:20}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:.6rem;font-weight:800}
.brand .logo-dot{width:22px;height:22px;border-radius:50%;background:radial-gradient(circle at 30% 30%, var(--brand), #7eeadf)}
.links a{margin:0 .8rem;text-decoration:none;color:#334155;font-weight:600;opacity:.9}
.links a.active{color:var(--brand)}
.btn{display:inline-block;padding:14px 22px;border-radius:999px;text-decoration:none;font-weight:700;border:2px solid transparent}
.btn.small{padding:8px 14px}
.btn.primary{background:var(--brand);color:white;box-shadow:0 8px 20px #42c3b84d}
.btn.ghost{border-color:#9ddff0;color:#0b4e4a;background:#e9f7fb}
.btn.white{background:white;color:#0b4e4a}

/* Space between headline/subtitle and CTA in the hero */
.hero .hero-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;                 /* <- controls the space */
}

/* Slightly more space on wide screens */
@media (min-width: 992px){
  .hero .hero-inner{ gap: 36px; }
}


.hero-inner{text-align:center}
.hero .brand-row{display:flex;justify-content:center;margin-bottom:10px}
.brand-lockup{height:28px;opacity:.9}
.hero h1{font-size:56px;line-height:1.05;margin:8px 0 10px}
.subtitle{color:var(--muted);font-size:18px;margin-bottom:28px}
.mockups img{width:min(1000px,100%);}

.features{padding:34px 0 0}
.feature-banner{width:100%;border-radius:22px;}

.split{display:grid;grid-template-columns:1.1fr .9fr;gap:36px;align-items:center;padding:70px 0}
.split.reverse{grid-template-columns:.9fr 1.1fr}
.split .split-media img{width:100%;border-radius:18px;}
.split .split-text h2{margin:0 0 10px;font-size:36px}
.mt40{margin-top:26px}


.simple{padding:60px 0}

/* ===== Footer ===== */
:root{
  --footer-bg: #052434;     /* dark navy */
  --footer-lime: #E0FF62;   /* lime headings/logo */
  --footer-text: #DCE6EE;   /* light body text */
}


.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 36px 0 48px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;   /* left brand | right links */
  gap: 40px;
  align-items: start;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.brand-name{
  margin:0;
  font-weight:800;
  color: var(--footer-lime);
  font-size: 30px;
}
/* Keep your original rule — it ensures visibility/size */
.footer-brand .ig{
  color: var(--footer-lime);               /* makes SVG visible */
  display: inline-flex;
  gap: 5px;                               /* space between icon and handle */
  text-decoration: none;
}

/* Make sure the SVG always has a size even if surrounding rules change */
.footer-brand .ig svg{
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

/* Handle text style */
.footer-brand .ig-handle{
  color: var(--footer-lime);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

/* Optional hover */
.footer-brand .ig:hover { text-decoration: underline; opacity: .95; }

.footer-links{
  display:block;                 /* one column */
  grid-template-columns: 1fr;
  row-gap: 14px;                 /* <- adjust this value for more/less space */
  max-width: 640px;     /* control line length */
}

.footer-links .col{
  display: contents;             /* children participate directly in the grid */
  margin: 0;                     /* remove extra spacing */
}

.footer-links .heading{
  font-size: 18px;               /* “Company”, “contact info” */
  line-height: 1.25;
  margin: 0 0 18px;
}

.footer-links a{
  display:inline-block;
  font-size: 18px;               /* “about us” line */
  line-height: 1.35;
  margin: 0 0 20px;
  color: var(--footer-text);
  text-decoration: none;
}
.footer-links a:hover{ text-decoration: underline; }

.footer-links address{
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
}

/* edge-to-edge feel with centered content width */
.site-footer .container{ width:min(1100px,92%); }

/* responsive */
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; row-gap: 24px; }
  .footer-links{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-links{ grid-template-columns: 1fr; }
}





/* ===== All-in-one Campus App section ===== */
.features-title{
  text-align:center;
  font-size:48px;
  margin:120px 0 20px;
}

.features-subtitle{
  text-align:center;
  color:var(--muted);
  margin:20 0 40px;
}

/* Container for the image */
.feature-media{
  align-self:end;                 /* push image to bottom of card */
  display:flex;
  justify-content:center;     /* or center */
  padding-top:12px;
}
/* SHRINK / CAP the image size here */
.feature-media img{
  max-width: 70%;                 /* <— adjust to taste (e.g., 60–80%) */
  max-height: 220px;              /* <— hard cap the height */
  width: auto;                    /* preserve aspect ratio */
  height: auto;                   /* preserve aspect ratio */
  object-fit: contain;            /* avoid cropping */
  display:block;
}

@media (max-width: 980px){
  .feature-media img{
    max-width: 80%;
    max-height: 180px;
  }
}
.feature-panels{
  position:relative;
  padding:30px 26px;
  border-radius:32px;
  background:#EFFDFF; /* pale blue banner */
  box-shadow:inset 0 0 0 1px rgba(70,198,221,.12);
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
  margin-top: 40px; 
}
.feature-card{
  position:relative;
  background:white;
  padding:26px 26px 90px;
  border-radius:24px;
  border:2px solid #46C6DD;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.feature-card h3{
  margin:0 0 10px;
  line-height:1.1;
  font-size:28px;
}
.feature-card .muted{color:var(--muted)}
.feature-art{
  position:absolute;left:22px;right:22px;bottom:16px;height:120px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(70,198,221,.25), rgba(70,198,221,.1));
  border:1px solid rgba(70,198,221,.35);
}
/* Placeholder variations for visual variety */
.feature-art-2{background:linear-gradient(180deg, rgba(70,198,221,.18), rgba(70,198,221,.06));}
.feature-art-3{background:linear-gradient(180deg, rgba(70,198,221,.12), rgba(70,198,221,.04));}

@media (max-width: 980px){
  .feature-panels{grid-template-columns:1fr}
  .features-title{font-size:36px}
}




/* ===== Real time chat CTA ===== */
:root { --cta-lime:#E7FF8D; }

.chat-cta { padding: 28px 0 64px; }

/* grid + lime panel drawn as a pseudo element */
.chat-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* copy | art */
  align-items: center;
  gap: 24px;
  padding: 0 20px 0;
}
.chat-grid::before{
  content:"";
  position:absolute;
  /* inset from container so corners show like your design */
  left: 24px; right: 24px;
  top: 88px;                       /* white space above panel */
  bottom: 0;
  background: var(--cta-lime);
  border-radius: 36px;
  z-index: 0;
}

.cta-copy{ position: relative; }
.cta-watermark{
  position: absolute;
  left: 50px;                 /* move as needed */
  top: 52px;
  width: 80px;               /* ↓ shrink here (try 120–160px) */
  height: auto;
  pointer-events: none;
}

/* If you were using the SVG icon element instead, cap it too */
.cta-copy .cta-icon{ width: 20px !important; height: 20px !important; }

/* left copy */
.cta-copy{ position: relative; z-index: 1; padding: 132px 0 72px 48px; }
.cta-copy .cta-icon{ width: 44px !important; height: 44px !important; color:#46C6DD; margin: 0 0 10px; }
.chat-grid h2{ margin:0 0 10px; font-size: 50px; color:#37bfd5; font-weight:800; }
.chat-grid p{ max-width: 36ch; color:#484D54; font-size: 20px; line-height:1.4; }

/* right phones */
.cta-art{ position: relative; z-index: 2; min-height: 560px; }
.phone{ position:absolute; object-fit:contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.18)); }

/* front / right phone */
.phone-a{ height: 620px; right: 46px; top: -80px; }

/* back / left phone */
.phone-b{ height: 560px; right: 300px; top: -40px; }

/* responsive */
@media (max-width:1200px){
  .chat-grid{ grid-template-columns: 1fr; }
  .chat-grid::before{ left:12px; right:12px; top:110px; border-radius:28px; }
  .cta-copy{ padding: 126px 24px 24px; text-align:left; }
  .chat-grid h2{ font-size: 42px; }
  .cta-art{ min-height: 520px; }
  .phone-a{ height: 560px; right: 24px; top: -60px; }
  .phone-b{ height: 500px; right: 240px; top: -30px; }
}


/* ---- Color tokens (optional, keep for reuse) ---- */
:root{
  --gray-6: #484D54;  /* headings */
  --gray-4: #787F87;  /* passages/body */
}

/* Section title color */
.features-title{
  color: var(--gray-6);
}

/* Card heading + passage colors */
.feature-card h3{
  color: var(--gray-6);
}
.feature-card .muted{
  color: var(--gray-4);
}

/* (Optional) also tweak global body text in this section */
.features .muted, .features p{
  color: var(--gray-4);
}

/* nav underline style */
.links{
  display:flex;
  gap: 34px;
}
.links a{
  position: relative;
  display: inline-block;
  padding: 8px 10px;                 /* some room around text */
  text-decoration: none;
  color: #484D54;
  font-weight: 700;
  transition: color .2s ease;
}

/* the underline */
.links a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;                     /* distance below text */
  width: 0;                          /* grows on hover/active */
  height: 3px;
  background: #46C6DD;               /* primary */
  border-radius: 3px;                /* rounded ends like screenshot */
  transform: translateX(-50%);
  transition: width .25s ease;
}

/* hover shows a short underline */
.links a:hover::after{
  width: 110%;                        /* adjust thickness length */
}

/* active state: teal text + underline visible */
.links a.active{
  color: #46C6DD;
}
.links a.active::after{
  width: 110%;
}

/* optional: reduce underline on small screens */
@media (max-width: 860px){
  .links{ gap: 18px; }
  .links a::after,
  .links a.active::after,
  .links a:hover::after{
    bottom: -8px;
    height: 2.5px;
    width: 60%;
  }
}

/* ===== Privacy page ===== */
.policy-hero{
  /* center & set the same width as the grid */
  width: min(1120px, 92%);
  margin: 30px auto 36px;     /* top gap | auto | bottom gap */
  padding: 22px 0 22px;       /* inner air; keep it light */
  border-bottom: 1px solid #e8eff3;  /* faint divider like the mock */
}

/* Give a touch more air on larger screens */
@media (min-width: 1200px){
  .policy-hero{
    margin: 26px auto 50px;
    padding: 40px 0 28px;
  }
}
.policy-hero h1{
  font-size: 64px;
  line-height: 1.05;
  margin: 28px 0;
  color: #46C6DD;             
}

/* layout */
.policy-wrap{ background:#fff; }
.policy-grid{
  display:grid;
  grid-template-columns: 220px 1px 1fr;  /* TOC | divider | content */
  gap: 28px;
  padding: 24px 0 80px;
}

/* sticky TOC */
.policy-toc{
  position:sticky; top:90px;
  align-self:start;
  gap: 22px;  
}
.policy-toc nav{ display:flex; flex-direction:column; row-gap: 24px;   }
.policy-toc a{
  color:#48515A;                   /* gray_6 vibe */
  text-decoration:none;
  font-weight:600;
  line-height:1.35;
}
.policy-toc a.toc-title{ font-weight:800; }
.policy-toc a.active{ color:#46C6DD; }
.policy-toc .dot{ color:#46C6DD; margin-left:6px; }

/* divider */
.policy-divider{
  width:1px; background:#eef2f5;
}

/* main content */
.policy-content{
  max-width: 720px;
}
.policy-content h2,
.policy-content h3{
  font-family:'FinalSix', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#222;
  margin: 8px 0 12px;
}
.policy-content h2{ font-size:28px; }
.policy-content h3{ font-size:22px; margin-top:28px; }

.policy-content p{
  color:#2d3440;
  line-height:1.75;
  margin: 10px 0 16px;
}
/* bullet spacing like screenshot */
.doc-inner ul{ padding-left: 22px; margin: 8px 0 16px; }
.doc-inner li{ margin: 6px 0; }

.policy-content .last-updated{
  color:#78828B;                   /* gray_4 vibe */
  font-size:14px; margin-bottom: 16px;
}

/* Option A: add inner space on the body column */
@media (min-width: 768px){
  .policy-content,              /* your article/body wrapper */
  .privacy-main,                /* (include the name you actually use) */
  .policy-article {
    padding-left: 70px;         /* tweak 20–40px to taste */
  }
}

.policy-content a{ color:#136f88; text-decoration:underline; }
.policy-content address{
  font-style:normal; line-height:1.7; color:#2d3440;
}

/* responsive */
@media (max-width: 980px){
  .policy-grid{
    grid-template-columns: 1fr;    /* stack TOC over content */
    gap: 14px;
  }
  .policy-divider{ display:none; }
  .policy-toc{ position:static; }
  .policy-hero h1{ font-size:44px; }
}


/* =========================
   ABOUT PAGE (about.html)
   ========================= */

/* ---------- Hero ---------- */
.about-hero{
  width:min(1120px,92%);
  margin: 34px auto 20px;            /* top/bottom air under the navbar */
  text-align:center;
}
.about-hero .eyebrow{
  color:#6a7a86;
  font-weight:700;
  letter-spacing:.02em;
  margin:0 0 6px;
}
.about-hero .subtitle{
  color:#7b8794;
  margin:0 0 10px;
}
.about-hero .display{
  font-family:'FinalSix', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height:1.05;
  margin: 8px 0 0;
}
.highlight-bar{
  position:relative;
  z-index:0;
}
.highlight-bar::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:.14em;
  height:.38em;
  background:#CDEFF3;                /* soft teal highlight */
  border-radius:6px;
  z-index:-1;
}

/* ---------- Mission ---------- */
.about-mission{
  padding: 14px 0 30px;
}
.mission-card{
  position:relative;
  width:min(1120px,92%);
  margin: 0 auto;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e8eef4;
  box-shadow: 0 16px 36px rgba(0,0,0,.06);
}
/* spacing for the 3 blocks: subtitle, H1, mission */
.about-hero {
  display: grid;          /* stack children vertically */
  gap: 15px;              /* space between subtitle and H1 */
  padding-top: 16px;
  margin-bottom: 30px;    /* space after hero before mission */
}
@media (min-width: 900px) {
  .about-hero { gap: 30px; margin-bottom: 46px; }
}

/* space around the mission block/image */
.about-mission {
  margin: 28px 0 36px;    /* space above and below mission */
}

/* extra space before vision section */
.about-vision {
  margin-top: 50px;
}

/* space between hero (subtitle + H1) and the mission image */
.about-mission {
  margin-top: 120px;                 /* increase/decrease to taste */
}

@media (min-width: 1024px) {
  .about-mission { margin-top: 120px; }  /* a bit more room on desktop */
}

/* ensure the image doesn't collapse margins */
.about-mission img {
  display: block;
  margin: 0 auto;       /* keep it centered if you want */
}

.mission-content{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 28px 16px;
}
.mission-content h2{
  margin:0 0 8px;
  font-size: clamp(20px, 2.8vw, 24px);
}
.mission-content p{
  margin: 2px 0;
  color:#49525a;
}

/* ---------- Vision ---------- */
.about-vision{
  width:min(1120px,92%);
  margin: 28px auto 10px;
  text-align: center;
}
.brand-accent{ color: var(--brand, #46C6DD); font-weight:800; }
.vision-hl{
  margin: 20px 0 30px;
  font-size: clamp(22px, 3vw, 28px);
  line-height:1.25;
  color:#30363d;
}

.vision-card{
  position: relative;
  margin: 0 auto;                     /* center the figure itself */
  border: none;                       /* remove the border */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;                   /* or keep a soft one if you want */
}
.vision-card img{
  display: block;
  width: 100%;
  height: auto;
  border: none;                        /* ensure no default image border */
}

/* About mission image size */
.about-mission img {
  width: 100%;        /* try 40–70% */
  max-width: 1580px;  /* hard cap */
  height: auto;      /* keep aspect ratio */
  display: block;    /* allows centering */
  margin: 0 auto;    /* center */
}


/* ---------- CTA banner ---------- */
.about-cta{
  margin: 30px 0 50px;
  border-top:1px solid #e6f4f8;
  background:#F0FDFF;
}
.about-cta .cta-inner{
  width:min(1120px,92%);
  margin: 0 auto;
  text-align:center;
  padding: 26px 0 30px;
}
.about-cta h3{
  margin: 6px 0 16px;
  font-size: clamp(18px, 2.7vw, 24px);
  color:#3c434a;
}
.btn-primary{
  display:inline-block;
  margin-top: 2px;
  padding: 12px 22px;
  border-radius:999px;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  background: var(--brand, #46C6DD);
  box-shadow: 0 10px 22px rgba(70,198,221,.28);
  border: 2px solid transparent;
}
.btn-primary:hover{ filter:brightness(.98); }

/* Base headline weight (non-highlighted text stays normal) */
.cta-headline { font-weight: 600; }  /* or 400–700 to taste */

/* Marker highlight for key words */
.hl{
  font-weight: 800; /* bold only the highlighted words */
  background: linear-gradient(180deg, transparent 60%, #E0FF62 60%); /* soft yellow */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .12em .02em;   /* tiny side/bottom padding so the ink peeks out */
  border-radius: 4px;       /* rounded “marker” edge */
}

/* If any old underline styles linger */
.cta-headline u { text-decoration: none; }


.mascots{
  display:flex;
  gap: 18px;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
  margin: 18px 0 0;
}
.mascots img{
  height: 58px;
  width:auto;
  display:block;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 900px){
  .mission-bg{ height: 200px; }
  .mission-content{ padding: 22px 14px; }
}
@media (max-width: 640px){
  .mascots{ gap: 12px; }
  .mascots img{ height: 46px; }
}
