/* Homepage-only styles. Uses the site's existing --navy / --emerald /
   --paper tokens for consistency, but every class here is prefixed
   home- so nothing here can leak onto other pages. */

.home-nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 0;
}
.home-nav .brand{ font-size:22px; gap:14px; }
.home-nav .brand .dot,
.home-nav .brand .brand-logo-img{ width:60px; height:60px; }
.home-nav .home-links{ display:flex; align-items:center; gap:28px; font-size:14.5px; font-weight:500; }
.home-nav .home-anchors{ display:flex; gap:28px; }
.home-nav .home-links a:not(.btn){ color:var(--text); }
.home-nav .home-links a:not(.btn):hover{ color:var(--emerald-dark); }

.home-hero{ padding:28px 0 56px; }
.home-hero h1{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(34px, 6vw, 52px); line-height:1.08; letter-spacing:-0.01em;
  color:var(--navy); max-width:16ch; margin:0 0 18px;
}
.home-hero .home-sub{ font-size:17px; line-height:1.6; color:var(--text-dim); max-width:44ch; margin:0 0 26px; }
.home-hero .home-cta-row{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.home-hero .home-cta-row .btn{ padding:14px 28px; font-size:15.5px; }
.home-hero .home-login-link{ font-size:14.5px; font-weight:600; color:var(--navy); }

/* The confirmation mock — the one deliberate visual moment on the
   page: a clean "it worked" badge, echoing what every purchase on
   the platform ends with. */
.home-receipt{
  margin-top:44px; max-width:340px; background:var(--white);
  border:1px solid var(--line); border-radius:16px; padding:32px 28px;
  box-shadow:0 20px 40px -24px rgba(11,30,61,.25);
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px;
}
.home-receipt .home-r-badge{
  width:56px; height:56px; border-radius:50%; background:var(--emerald-tint);
  display:flex; align-items:center; justify-content:center;
}
.home-receipt .home-r-badge svg{ width:28px; height:28px; }
.home-receipt .home-r-title{ font-family:var(--font-display); font-size:19px; font-weight:700; color:var(--navy); }
.home-receipt .home-r-sub{ font-size:13.5px; color:var(--text-dim); }

/* Trust line — plain facts, no icon boxes */
.home-trust{
  display:flex; flex-wrap:wrap; gap:28px 40px; padding:26px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  margin-bottom:52px;
}
.home-trust .home-trust-item{ font-size:14px; color:var(--text); max-width:32ch; }
.home-trust .home-trust-item b{ color:var(--navy); }

/* Services — letter-mark tiles instead of emoji cards */
.home-services h2{ font-family:var(--font-display); font-size:30px; color:var(--navy); margin:0 0 8px; }
.home-services > p{ font-size:15px; color:var(--text-dim); max-width:52ch; margin:0 0 30px; }
.home-service-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:2px; background:var(--line); border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.home-service{ background:var(--white); padding:22px; display:flex; gap:14px; }
.home-service .home-mark{
  flex-shrink:0; width:36px; height:36px; border-radius:9px; background:var(--navy);
  color:var(--emerald); font-family:var(--font-display); font-weight:700; font-size:18px;
  display:flex; align-items:center; justify-content:center; line-height:1;
}
.home-service h3{ font-size:15px; color:var(--text); margin:0 0 5px; }
.home-service p{ font-size:13px; line-height:1.55; color:var(--text-dim); margin:0; }

/* Why choose us — asymmetric, not identical cards */
.home-why{ padding:60px 0; display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:start; }
.home-why h2{ font-family:var(--font-display); font-size:30px; color:var(--navy); margin:0 0 16px; max-width:14ch; }
.home-why p{ font-size:15.5px; line-height:1.65; color:var(--text-dim); max-width:46ch; }
.home-why-facts .home-fact{ padding:18px 0; border-top:1px solid var(--line); }
.home-why-facts .home-fact:last-child{ border-bottom:1px solid var(--line); }
.home-why-facts .home-fact b{ display:block; font-size:15px; color:var(--navy); margin-bottom:4px; }
.home-why-facts .home-fact span{ font-size:13.5px; color:var(--text-dim); }

/* Footer — big, tappable buttons instead of small text links */
.home-footer-grid{ display:grid; grid-template-columns:1.1fr 1fr 1.2fr; gap:40px; }
.home-footer-grid .brand .dot,
.home-footer-grid .brand .brand-logo-img{ width:52px; height:52px; }
.home-footer-btns{ display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.home-footer-btn{
  width:100%; justify-content:flex-start; text-align:left;
  color:#fff !important; border-color:rgba(255,255,255,.28) !important;
  font-size:15px; padding:13px 18px;
}
.home-footer-btn:hover{ border-color:#fff !important; background:rgba(255,255,255,.07); }

@media (max-width:860px){
  .home-footer-grid{ grid-template-columns:1fr; gap:36px; }
}

/* Partner band */
.home-partner{
  background:var(--navy); border-radius:20px; padding:48px 40px;
  margin-bottom:56px; display:grid; gap:14px; max-width:64ch;
}
.home-partner h2{ font-family:var(--font-display); color:var(--paper); font-size:27px; margin:0; }
.home-partner p{ color:rgba(247,249,252,.72); font-size:15px; line-height:1.6; margin:0 0 8px; }

@media (max-width:860px){
  .home-nav .home-anchors{ display:none; }
  .home-nav{ flex-wrap:wrap; gap:12px; }
  .home-nav .brand{ font-size:18px; gap:10px; }
  .home-nav .brand .dot,
  .home-nav .brand .brand-logo-img{ width:48px; height:48px; }
  .home-nav .home-links{ gap:10px; }
  .home-nav .home-links .btn{ padding:9px 16px; font-size:13px; }
  .home-hero{ padding:16px 0 40px; }
  .home-receipt{ max-width:100%; }
  .home-service-grid{ grid-template-columns:1fr; }
  .home-why{ grid-template-columns:1fr; gap:32px; padding:44px 0; }
  .home-partner{ padding:32px 24px; border-radius:16px; }
}
