/* Hivekeeper — Android Studio. Warm honey & amber light system. */
:root {
  --bg: #faf6ef;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #fff9f1;
  --line: rgba(70,45,10,.09);
  --line-strong: rgba(70,45,10,.15);
  --text: #2a1c0d;
  --muted: #6f5f4b;
  --muted-2: #a6907a;
  --brand: #ea580c;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --ink: #23180c;
  --grad: linear-gradient(135deg, #f59e0b 0%, #fb923c 46%, #f43f5e 100%);
  --grad-soft: linear-gradient(135deg, rgba(245,158,11,.16), rgba(244,63,94,.10));
  --shadow: 0 18px 50px rgba(120,70,10,.10);
  --shadow-lg: 0 30px 70px rgba(120,70,10,.16);
  --max: 1180px;
  --r: 20px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(680px 460px at 10% -6%, rgba(245,158,11,.18), transparent 60%),
    radial-gradient(720px 480px at 94% -2%, rgba(244,63,94,.12), transparent 60%),
    var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 700; line-height: 1.07; letter-spacing: -.02em; color: var(--text); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
em { font-style: normal; }

/* Announcement strip */
.strip {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 9px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(245,158,11,.08), rgba(244,63,94,.06));
}
.strip b { color: var(--brand); font-weight: 700; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.80);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 15px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 11px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -.01em; }
.logo img { height: 32px; width: 32px; }
.logo span b { color: var(--text); }
.logo .tld { color: var(--muted-2); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14.5px; color: var(--muted); }
.nav-links a { transition: color .2s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 999px; color: #fff !important;
  background: var(--grad); box-shadow: 0 10px 26px rgba(234,88,12,.30);
  transition: transform .18s, box-shadow .18s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(234,88,12,.40); }
.nav-burger { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--grad); color: #fff; border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(234,88,12,.28);
  transition: transform .18s, box-shadow .18s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(234,88,12,.40); }
.btn-ghost {
  background: #fff; color: var(--text);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow);
}
.btn-ghost:hover { border-color: var(--brand); background: #fff; color: var(--brand); }
.btn-arrow::after { content: '→'; font-size: 16px; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); display: inline-block; }

/* Section frame */
section { padding: 80px 0; position: relative; }
.sec-head { max-width: 680px; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(28px, 3.8vw, 46px); margin-bottom: 16px; }
.sec-head p { color: var(--muted); font-size: 16.5px; }

/* Hero */
.hero { padding: 76px 0 66px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5vw, 62px); margin-bottom: 22px; }
.hero p.lede { color: var(--muted); font-size: 18px; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-tags { display: flex; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.hero-tags span {
  font-size: 13px; color: var(--muted); padding: 8px 15px; font-weight: 500;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
}

/* Hero — centered layout */
.hero-center { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-center .eyebrow { justify-content: center; }
.hero-center p.lede { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions { justify-content: center; }
.hero-center .hero-tags { justify-content: center; }

/* Hero showcase — honeycomb "coming soon" cells */
.hero-showcase {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 60px; padding-top: 44px; border-top: 1px solid var(--line);
}
.show-tile { display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center; }
.show-tile .box {
  width: 76px; height: 76px; border-radius: 19px; overflow: hidden;
  display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.show-tile:hover .box { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.show-tile .box svg { width: 34px; height: 34px; }
.show-tile span { font-size: 12px; color: var(--muted); font-weight: 600; line-height: 1.25; max-width: 96px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px 24px; box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); margin-bottom: 18px;
}
.pillar .ic svg { width: 23px; height: 23px; }
.pillar h3 { font-size: 19px; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 14.5px; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 32px 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.service::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad);
}
.service h3 { font-size: 20px; margin: 4px 0 12px; }
.service > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.service ul { list-style: none; }
.service li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14.5px; margin-bottom: 9px; }
.service li::before { content: '↳'; position: absolute; left: 0; color: var(--brand); }
.service .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; letter-spacing: .12em; color: var(--muted-2); font-weight: 700; }

/* App portfolio grid */
.apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.app-art {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fce7cd, #fbe0e0);
}
.app-art .art-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.app-art::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(42,28,13,0) 42%, rgba(42,28,13,.46));
}
.app-icon-box {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  width: 64px; height: 64px; border-radius: 16px; overflow: hidden;
  background: #fff; border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 12px 26px rgba(0,0,0,.32);
}
.app-icon-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.app-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.app-body .cat { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.app-body h3 { font-size: 18px; margin: 7px 0 9px; }
.app-body p { color: var(--muted); font-size: 14px; margin-bottom: 18px; flex: 1; }
.app-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 13px; color: var(--muted-2); }
.app-meta .stars { color: var(--amber); letter-spacing: 1px; }
.app-store-link {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13.5px;
  color: var(--text); padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); transition: .2s;
}
.app-store-link:hover { border-color: var(--brand); color: var(--brand); background: var(--grad-soft); }
.app-store-link svg { width: 16px; height: 16px; }
.apps-more { text-align: center; margin-top: 40px; }

/* Apps — coming soon empty state */
.apps-soon {
  border: 1.5px dashed var(--line-strong);
  border-radius: 24px; padding: 66px 34px; text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(245,158,11,.10), transparent 60%),
    var(--panel-2);
}
.apps-soon .hex {
  width: 84px; height: 84px; margin: 0 auto 24px; display: grid; place-items: center;
  border-radius: 22px; background: var(--grad); box-shadow: var(--shadow-lg);
}
.apps-soon .hex svg { width: 42px; height: 42px; }
.apps-soon h3 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.apps-soon p { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto 26px; }
.apps-soon .soon-cells { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.apps-soon .soon-cells span {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.apps-soon .soon-cells svg { width: 26px; height: 26px; opacity: .55; }

/* Google Play badge button */
.gplay-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); border: 1px solid var(--ink);
  border-radius: 14px; padding: 12px 24px;
  transition: transform .18s, box-shadow .18s;
}
.gplay-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(35,24,12,.3); }
.gplay-ic { display: grid; place-items: center; }
.gplay-txt { display: flex; flex-direction: column; line-height: 1.1; color: #fff; text-align: left; }
.gplay-txt small { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #e5d3bf; }
.gplay-txt strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 21px; font-weight: 700; }
.gplay-btn.is-soon { opacity: .55; pointer-events: none; }

/* Process */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; box-shadow: var(--shadow);
}
.step .n {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff; margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: 24px;
  padding: 34px; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.split-panel::after {
  content: ''; position: absolute; width: 260px; height: 260px; right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(245,158,11,.22), transparent 70%);
}
.split h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.split > div > p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.check { list-style: none; }
.check li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--muted); }
.check li::before {
  content: '✓'; position: absolute; left: 0; top: 1px; color: #fff; font-size: 12px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%; background: var(--grad); display: grid; place-items: center;
}
.split-panel .row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); }
.split-panel .row:last-child { border-bottom: none; }
.split-panel .row .lbl { color: var(--muted); }
.split-panel .row .val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

/* Big CTA band */
.cta-band { text-align: center; }
.cta-card {
  border: 1px solid var(--line-strong);
  border-radius: 28px; padding: 72px 32px; color: #fff;
  background: var(--grad);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 120% at 50% -10%, rgba(255,255,255,.25), transparent 60%);
}
.cta-card h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; color: #fff; position: relative; }
.cta-card p { color: rgba(255,255,255,.92); font-size: 16.5px; max-width: 540px; margin: 0 auto 30px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-card .btn { background: #fff; color: var(--brand); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.cta-card .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); box-shadow: none; }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 70px 0 36px; background: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.foot-brand p { color: var(--muted); font-size: 14.5px; max-width: 300px; margin: 16px 0; }
.foot-brand .addr { color: var(--muted-2); font-size: 13.5px; }
.foot-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 700; }
.foot-col a, .foot-col p { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--brand); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: 13.5px; }

/* Legal pages */
.legal { max-width: 800px; margin: 0 auto; padding: 80px 28px; }
.legal h1 { font-size: clamp(34px, 4.6vw, 48px); margin-bottom: 10px; }
.legal .updated { color: var(--muted-2); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 46px; }
.legal h2 { font-size: 24px; margin: 40px 0 14px; }
.legal p { color: var(--muted); margin-bottom: 16px; }
.legal ul { list-style: none; margin: 0 0 18px; }
.legal li { position: relative; padding-left: 24px; color: var(--muted); margin-bottom: 10px; }
.legal li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.legal a { color: var(--brand); border-bottom: 1px solid rgba(234,88,12,.4); }
.legal a:hover { color: var(--rose); }

/* Contact */
.contact-info .eyebrow { margin-bottom: 22px; }
.contact-info h1 { font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 18px; }
.contact-info > p { color: var(--muted); font-size: 18px; margin-bottom: 32px; }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-list .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; flex: none; }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list .k { font-size: 12.5px; color: var(--muted-2); letter-spacing: .08em; text-transform: uppercase; }
.info-list .val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 600; }
.info-list a.val { color: var(--text); }
.info-list a.val:hover { color: var(--brand); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; margin-top: 48px; }
.contact-cards li { border-bottom: 1px solid var(--line); }

/* Page hero (subpages) */
.page-hero { padding: 70px 0 30px; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 640px; }

/* About specifics */
.beliefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.belief { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.belief .n { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--brand); font-size: 14px; letter-spacing: .12em; margin-bottom: 12px; font-weight: 800; }
.belief h3 { font-size: 18px; margin-bottom: 10px; }
.belief p { color: var(--muted); font-size: 14.5px; }
.prose { max-width: 720px; }
.prose p { color: var(--muted); font-size: 18px; margin-bottom: 20px; }
.prose p strong { color: var(--text); font-weight: 700; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .services, .apps, .process, .beliefs { grid-template-columns: 1fr 1fr; }
  .hero-showcase { grid-template-columns: repeat(4, 1fr); gap: 22px 14px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile navigation — collapse to a burger menu before links crowd */
@media (max-width: 860px) {
  .nav-burger {
    display: inline-grid; place-items: center; width: 44px; height: 44px;
    border-radius: 11px; border: 1px solid var(--line-strong); background: #fff; cursor: pointer;
  }
  .nav-burger span { position: relative; display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
  .nav-burger span::before, .nav-burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
  .nav-burger span::before { top: -6px; }
  .nav-burger span::after { top: 6px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 12px 22px 18px; gap: 2px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { padding: 13px 4px; font-size: 16px; color: var(--text); border-bottom: 1px solid var(--line); }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open .nav-cta {
    margin-top: 12px; padding: 14px; text-align: center; justify-content: center;
    color: #fff !important; box-shadow: none; border-radius: 12px;
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-inner { padding: 13px 20px; }
  .container { padding: 0 20px; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: clamp(33px, 8.4vw, 46px); }
  .hero p.lede { font-size: 17px; }
  .sec-head h2 { font-size: clamp(28px, 7.6vw, 40px); }
  .page-hero h1 { font-size: clamp(32px, 8.4vw, 46px); }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; justify-content: center; }
  .pillars, .services, .apps, .process, .beliefs { grid-template-columns: 1fr; }
  .hero-showcase { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .show-tile .box { width: 66px; height: 66px; border-radius: 17px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 6px; }
  .contact-cards { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 22px; }
  .apps-soon { padding: 48px 22px; }
  section { padding: 62px 0; }
}
