/* Teza landing — palette from frontend/lib/theme/colors.dart (light) */
:root {
  --accent: #E8723A;
  --accent-light: #FFF3ED;
  --accent-dark: #C95E2B;
  --ink: #1A1A2E;
  --text-2: #6B7280;
  --text-3: #9CA3AF;
  --bg: #FFFFFF;
  --bg-2: #F8F5F2;
  --card: #FFFFFF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --shadow: 0 1px 2px rgba(26,26,46,.04), 0 8px 24px rgba(26,26,46,.06);
  --shadow-lg: 0 20px 60px rgba(26,26,46,.12);
}

* { box-sizing: border-box; }
[x-cloak] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232,114,58,.28);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-tile { width: 36px; height: 36px; border-radius: 9px; display: block; box-shadow: 0 2px 6px rgba(232,114,58,.3); }
.brand-name { font-size: 1.3rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-footer .brand-tile { width: 34px; height: 34px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-2); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  padding: 6px;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border-light);
  background: #fff;
}
.mobile-nav a { padding: 12px 4px; color: var(--ink); font-weight: 600; }
.mobile-nav .btn { margin-top: 8px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  background:
    radial-gradient(60% 70% at 88% -10%, rgba(232,114,58,.16) 0%, transparent 55%),
    radial-gradient(50% 60% at 6% 110%, rgba(232,114,58,.08) 0%, transparent 55%),
    var(--bg);
}
/* Dot-grid tech texture behind hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,46,.07) 1.2px, transparent 1.3px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 35%, #000 0%, transparent 78%);
          mask-image: radial-gradient(75% 75% at 50% 35%, #000 0%, transparent 78%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.lead { font-size: 1.15rem; color: var(--text-2); max-width: 46ch; margin: 18px 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 44px 0 0;
  padding: 0;
  flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.05rem; }
.hero-stats span { color: var(--text-3); font-size: .9rem; }

/* ===== Realistic phone running an animated money chat ===== */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px 0 30px;
}
.phone {
  position: relative;
  width: 340px;
  height: 660px;
  background: linear-gradient(160deg, #2b2b40, #15151f);
  border-radius: 52px;
  padding: 13px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.06) inset,
    0 30px 70px rgba(26,26,46,.30),
    0 10px 24px rgba(26,26,46,.18);
  z-index: 1;
  animation: bob-a 8s ease-in-out infinite;
}
/* Side buttons */
.phone-btn { position: absolute; background: #15151f; border-radius: 3px; }
.phone-power  { right: -3px; top: 168px; width: 3px; height: 84px; }
.phone-vol-up { left: -3px; top: 140px; width: 3px; height: 50px; }
.phone-vol-dn { left: -3px; top: 204px; width: 3px; height: 50px; }

.phone-screen {
  position: relative;
  height: 100%;
  background: #F1ECE7;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Dynamic-island notch */
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 104px; height: 30px;
  background: #15151f;
  border-radius: 16px;
  z-index: 5;
}
/* Status bar */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
}
.phone-status-icons { display: flex; align-items: center; gap: 5px; color: var(--ink); }

/* Chat app shell */
.chat-app { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.chat-bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 20px 14px;
  border-bottom: 1px solid rgba(26,26,46,.08);
}
.chat-av {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff; font-weight: 800; font-size: .95rem;
}
.chat-av-owner { background: #6C63B5; }
.chat-bar b { display: block; font-size: .98rem; color: var(--ink); }
.chat-bar small { font-size: .74rem; color: var(--success); font-weight: 600; }

.chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 16px;
  justify-content: flex-end;
}

/* Chat bubbles — "them" = owner (left), "me" = manager (right).
   Smooth reveal: bubbles stay in flow, collapse to 0 height when hidden,
   then ease open + slide up. No display toggle = no layout jump. */
.msg {
  max-width: 82%;
  padding: 0 14px;
  border-radius: 18px;
  font-size: .9rem;
  line-height: 1.45;
  box-shadow: 0 2px 6px rgba(26,26,46,.06);
  /* hidden state */
  max-height: 0;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  overflow: hidden;
  margin-top: -9px;            /* cancel the gap while collapsed */
  transition:
    max-height .45s ease,
    opacity .35s ease,
    transform .45s cubic-bezier(.22,1,.36,1),
    padding .45s ease,
    margin .45s ease;
}
.msg.in {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0) scale(1);
  padding: 11px 14px;
  margin-top: 0;
}
.msg-them {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border-bottom-left-radius: 5px;
}
.msg-me {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.d { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.d-cash { background: var(--accent); }
.d-momo { background: #E1B12C; }
.d-bank { background: #6C63B5; }

/* Typing indicator (uses x-show; brief, so a fade is fine) */
.msg-typing {
  align-self: flex-end;
  display: flex;
  gap: 4px;
  background: var(--accent);
  padding: 13px 15px;
  border-radius: 18px;
  border-bottom-right-radius: 5px;
}
.msg-typing.them-typing {
  align-self: flex-start;
  background: #fff;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 5px;
}
.msg-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  animation: typing 1.2s ease-in-out infinite;
}
.them-typing span { background: var(--text-3); }
.msg-typing span:nth-child(2) { animation-delay: .2s; }
.msg-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%,60%,100% { opacity: .3; transform: translateY(0); }
  30%         { opacity: 1; transform: translateY(-4px); }
}

/* ===== Teza app view (the reveal) ===== */
.rc-logo {
  display: grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--accent); color: #fff;
  font-size: .62rem; font-weight: 800;
}
.teza-app {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-2);
}
/* Branded orange header band holding the total */
.ta-top {
  padding: 56px 22px 22px;
  background: linear-gradient(155deg, #F0884E 0%, var(--accent) 55%, #D9622C 100%);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 10px 24px rgba(232,114,58,.28);
}
.ta-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.ta-mark { width: 20px; height: 20px; border-radius: 6px; background: #fff; padding: 1px; }
.ta-total { margin-top: 12px; }
.ta-total span { display: block; font-size: .8rem; color: rgba(255,255,255,.82); }
.ta-total b { font-size: 2rem; color: #fff; letter-spacing: -.02em; }

/* Sparkle on the total when the app opens */
.ta-amount { position: relative; display: inline-block; }
.sparkle {
  position: absolute;
  color: #fff;
  opacity: 0;
  pointer-events: none;
}
.sparkle-1 { width: 16px; height: 16px; top: -8px; right: -10px; animation: sparkle 2.4s ease-in-out infinite; animation-delay: .4s; }
.sparkle-2 { width: 11px; height: 11px; top: 10px; right: -18px; animation: sparkle 2.4s ease-in-out infinite; animation-delay: 1s; }
.sparkle-3 { width: 9px; height: 9px; top: -4px; right: 24%; animation: sparkle 2.4s ease-in-out infinite; animation-delay: 1.5s; }
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  40%      { opacity: 1; transform: scale(1) rotate(90deg); }
  70%      { opacity: .6; transform: scale(.8) rotate(140deg); }
}

/* Owner reaction bubble floating over the app */
.react-bubble {
  position: absolute;
  right: 16px;
  bottom: 96px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 75%;
  background: #fff;
  border-radius: 16px;
  border-bottom-right-radius: 5px;
  padding: 9px 13px 9px 9px;
  font-size: .86rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(232,114,58,.4);
}
.react-av {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent); font-size: .62rem; font-weight: 700;
  flex-shrink: 0;
}
.ta-list { display: flex; flex-direction: column; gap: 9px; padding: 0 18px; }
.ta-acct {
  display: flex; align-items: center; gap: 11px;
  background: #fff;
  padding: 12px 13px;
  border-radius: var(--radius-sm);
  /* staggered slide-in */
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(.15s + var(--i) * .12s);
}
.ta-acct.in { opacity: 1; transform: translateY(0); }
.ta-acct .acct-info { flex: 1; line-height: 1.3; }
.ta-acct .acct-info b { display: block; font-size: .92rem; color: var(--ink); }
.ta-acct .acct-info small { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: var(--text-3); margin-top: 3px; }
.ta-acct em { font-style: normal; font-weight: 800; font-size: .92rem; color: var(--ink); white-space: nowrap; }
.acct-av {
  display: inline-grid; place-items: center;
  width: 17px; height: 17px;
  border-radius: 50%;
  font-size: .54rem; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av-1 { background: var(--accent); }
.av-2 { background: #E1B12C; }
.av-3 { background: #6C63B5; }

.ta-expected {
  margin: auto 18px 18px;
  background: var(--ink);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.22,1,.36,1);
  transition-delay: .55s;
}
.ta-expected.in { opacity: 1; transform: translateY(0); }
.ta-expected span { font-size: .74rem; color: #C7C7D6; display: block; }
.ta-expected > div b { font-size: 1.4rem; letter-spacing: -.02em; }
.ta-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem !important;
  font-weight: 700;
  color: var(--success) !important;
  text-align: right;
}
.ta-check svg { width: 16px; height: 16px; }

/* Logo splash on the chat → app hand-off */
.teza-splash {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-logo {
  width: 96px; height: 96px;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(232,114,58,.32);
  animation: splash-pop .5s cubic-bezier(.2,1.4,.4,1) both;
}
@keyframes splash-pop {
  0% { transform: scale(.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* View cross-fade helpers (Alpine x-transition classes) */
.view-leave { transition: opacity .3s ease; }
.view-leave-end { opacity: 0; }
.view-enter { transition: opacity .4s ease; }
.view-enter-start { opacity: 0; }

@keyframes bob-a {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* ===== Sections ===== */
.section { padding: 88px 0; position: relative; }
.section-alt {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}
/* Faint diagonal grid lines behind services */
.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,26,46,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,46,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.section-alt .container { position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-sub { color: var(--text-2); font-size: 1.08rem; margin: 14px 0 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.about-text p { color: var(--text-2); font-size: 1.08rem; margin: 0 0 18px; }

/* Services cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.card-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-2); margin: 0; font-size: .98rem; }

/* Contact */
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  background-image:
    radial-gradient(70% 100% at 50% 0%, rgba(232,114,58,.28) 0%, transparent 60%),
    radial-gradient(50% 80% at 100% 100%, rgba(232,114,58,.16) 0%, transparent 60%);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1.2px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 75%);
          mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 75%);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h2 { color: #fff; }
.contact-card .eyebrow { background: rgba(232,114,58,.18); }
.contact-card .section-sub { color: #C7C7D6; max-width: 50ch; margin-left: auto; margin-right: auto; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 30px 0 36px; }
.contact-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.contact-card .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.contact-meta {
  list-style: none;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.contact-meta li { display: flex; flex-direction: column; gap: 4px; }
.contact-meta span { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); }
.contact-meta a { font-weight: 600; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); padding: 48px 0; color: #C7C7D6; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-footer { color: #fff; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: #C7C7D6; font-weight: 500; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: #9CA3AF; font-size: .9rem; margin: 0; }
.ganza { color: var(--accent); font-weight: 700; }

/* ===== Abstract shapes: floating blobs ===== */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
  filter: blur(8px);
  opacity: .55;
  will-change: transform;
}
.blob-1 {
  top: -60px; right: 8%;
  width: 320px; height: 320px;
  background: radial-gradient(circle at 30% 30%, #FFC9A8, #E8723A);
  opacity: .35;
  animation: float-a 14s ease-in-out infinite;
}
.blob-2 {
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle at 40% 40%, #FFE0CC, #F0884E);
  opacity: .28;
  animation: float-b 18s ease-in-out infinite;
}
.blob-3 {
  top: 35%; left: 42%;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 50% 50%, #FFD7BD, #E8723A);
  opacity: .2;
  animation: float-c 22s ease-in-out infinite;
}
@keyframes float-a {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%     { transform: translate(-30px,40px) rotate(18deg); }
}
@keyframes float-b {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  50%     { transform: translate(40px,-30px) rotate(-14deg) scale(1.08); }
}
@keyframes float-c {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,20px) scale(1.12); }
  66%     { transform: translate(-20px,-24px) scale(.94); }
}

/* ===== Wave dividers ===== */
.wave { position: absolute; left: 0; width: 100%; height: 90px; display: block; z-index: 2; }
.wave-bottom { bottom: -1px; }
.wave-top { top: -1px; }

/* ===== Check list (About) ===== */
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-light)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8723A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center / 14px no-repeat;
}

/* ===== Featured service card ===== */
.card-featured {
  grid-column: span 1;
  background: linear-gradient(160deg, var(--ink) 0%, #2a2a45 100%);
  border-color: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.card-featured::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  right: -60px; bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,114,58,.5), transparent 70%);
  pointer-events: none;
}
.card-featured h3 { color: #fff; }
.card-featured p { color: #C7C7D6; position: relative; z-index: 1; }
.card-featured .card-icon { background: rgba(232,114,58,.22); color: var(--accent); }
.card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,114,58,.18);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .blob, .phone, .bubble, .sparkle, .splash-logo { animation: none; }
  .sparkle { opacity: .7; }
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav { display: flex; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .hero-visual { order: -1; padding: 8px 0 24px; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .contact-card { padding: 48px 24px; }
}
@media (max-width: 420px) {
  /* Scale the fixed-size phone down so it never overflows.
     Drop the bob animation here — it would override the scale transform. */
  .phone { transform: scale(.84); margin: -52px 0; animation: none; }
}
@media (max-width: 360px) {
  .phone { transform: scale(.74); margin: -86px 0; }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
