:root {
  --ink: #102f36;
  --ink-soft: #40616a;
  --teal: #087f76;
  --teal-deep: #075b57;
  --teal-pale: #e7f7f2;
  --blue-pale: #edf4ff;
  --sun: #f5b83e;
  --sun-pale: #fff4d9;
  --paper: #fbfcfa;
  --white: #ffffff;
  --line: #d9e7e4;
  --shadow: 0 24px 70px rgba(21, 74, 70, 0.11);
  --display: "Aptos Display", "Trebuchet MS", sans-serif;
  --body: Aptos, Candara, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 2%, rgba(245, 184, 62, 0.18), transparent 26rem),
    radial-gradient(circle at 0% 20%, rgba(14, 156, 142, 0.12), transparent 30rem),
    var(--paper);
  font: 16px/1.6 var(--body);
}

a { color: inherit; }
img { max-width: 100%; }
.site-shell { overflow: hidden; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 2px; background: var(--sun); content: ""; }

.announcement {
  background: #fdf5e8;
  border-bottom: 1px solid #f5e4bd;
  color: #5f4a1b;
  font-size: 0.88rem;
}
.announcement .container { display: flex; justify-content: center; gap: 10px; padding: 8px 0; }
.announcement strong { color: #3e3415; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 252, 250, 0.9);
  border-bottom: 1px solid rgba(217, 231, 228, 0.85);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-word { display: grid; line-height: 1; }
.brand-word strong { color: var(--ink); font: 800 1.4rem/1 var(--display); letter-spacing: -0.055em; }
.brand-word span { margin-top: 5px; color: var(--ink-soft); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 20px; }
.nav-links a { color: #31575d; font-size: 0.91rem; font-weight: 750; text-decoration: none; }
.nav-links a:hover { color: var(--teal); }
.nav-links .nav-cta { padding: 10px 14px; border: 1px solid var(--teal); border-radius: 999px; color: var(--teal-deep); }

.hero { position: relative; padding: 88px 0 68px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr); gap: 54px; align-items: center; }
.hero-copy h1, .page-hero h1 { max-width: 760px; margin: 14px 0 20px; font: 800 clamp(2.9rem, 6vw, 5.5rem)/0.96 var(--display); letter-spacing: -0.07em; }
.hero-copy h1 em { color: var(--teal); font-style: normal; }
.lede { max-width: 640px; margin: 0; color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.24rem); }
.hero-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--teal);
  box-shadow: 0 12px 25px rgba(8, 127, 118, 0.18);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { background: var(--teal-deep); box-shadow: 0 16px 30px rgba(8, 127, 118, 0.24); transform: translateY(-2px); }
.button.secondary { border-color: var(--line); background: var(--white); box-shadow: none; color: var(--ink); }
.button.secondary:hover { background: #f1f8f6; color: var(--teal-deep); }
.button.warm { background: var(--sun); box-shadow: 0 12px 25px rgba(245, 184, 62, 0.22); color: #3d3215; }
.button.warm:hover { background: #e8a923; }
.trust-line { display: flex; flex-wrap: wrap; gap: 11px 20px; margin-top: 22px; color: #48686d; font-size: 0.9rem; font-weight: 700; }
.trust-line span::before { margin-right: 7px; color: var(--teal); content: "check"; font-size: 0.72rem; text-transform: uppercase; }

.product-frame {
  position: relative;
  padding: 16px;
  border: 1px solid #d3e7e2;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  animation: float-in 700ms ease-out both;
}
.product-frame::before {
  position: absolute;
  z-index: -1;
  top: 20%;
  right: -14%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--sun-pale);
  content: "";
}
.app-window { overflow: hidden; border: 1px solid #d6e6e4; border-radius: 18px; background: #f7fbfa; }
.app-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: #fff; border-bottom: 1px solid #e1edeb; }
.app-brand { display: flex; align-items: center; gap: 9px; font-weight: 850; }
.app-brand img { width: 27px; height: 27px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 999px; background: #cad8d5; }
.app-body { display: grid; grid-template-columns: 112px 1fr; min-height: 380px; }
.app-side { padding: 18px 12px; background: #ecf7f4; }
.app-side b, .app-side span { display: block; padding: 8px; border-radius: 7px; color: #537176; font-size: 0.68rem; }
.app-side b { background: #d5efe9; color: var(--teal-deep); }
.app-main { padding: 22px; }
.app-project { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.app-project small { color: var(--ink-soft); font-weight: 700; }
.app-project h3 { margin: 3px 0 0; font: 800 1.32rem/1 var(--display); letter-spacing: -0.04em; }
.app-add { padding: 8px 10px; border-radius: 8px; background: var(--teal); color: white; font-size: 0.68rem; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 18px 0; }
.metric { padding: 12px; border: 1px solid #dcebe8; border-radius: 10px; background: white; }
.metric small { display: block; color: #6a8588; font-size: 0.62rem; }
.metric strong { display: block; margin-top: 5px; font-size: 0.95rem; }
.metric strong.teal { color: var(--teal); }
.invoice-list { border: 1px solid #dceae8; border-radius: 10px; background: white; }
.invoice-row { display: grid; grid-template-columns: 1.4fr .75fr .75fr; gap: 8px; align-items: center; padding: 10px 12px; border-bottom: 1px solid #edf3f2; color: #547176; font-size: 0.65rem; }
.invoice-row:last-child { border-bottom: none; }
.invoice-row.head { background: #f4f9f8; color: #50716d; font-weight: 800; }
.invoice-row span:last-child { color: var(--teal-deep); font-weight: 800; text-align: right; }

.section { padding: 76px 0; }
.section.soft { background: rgba(231, 247, 242, 0.7); border-top: 1px solid #d8ece7; border-bottom: 1px solid #d8ece7; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading h2 { max-width: 690px; margin: 11px 0 0; font: 800 clamp(2.15rem, 4vw, 3.5rem)/1 var(--display); letter-spacing: -0.06em; }
.section-heading p { max-width: 390px; margin: 0; color: var(--ink-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.feature-card { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 15px 35px rgba(27, 80, 75, 0.05); }
.feature-card:nth-child(2) { background: #f0f7ff; border-color: #dbe7f8; }
.feature-card:nth-child(3) { background: #fff8e8; border-color: #f1e2ba; }
.feature-icon { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 13px; background: var(--teal); color: white; font: 800 0.76rem var(--display); }
.feature-card:nth-child(2) .feature-icon { background: #3c70b8; }
.feature-card:nth-child(3) .feature-icon { background: #d58f12; }
.feature-card h3 { margin: 22px 0 8px; font: 800 1.3rem/1.1 var(--display); letter-spacing: -0.035em; }
.feature-card p { margin: 0; color: var(--ink-soft); }

.product-screens { overflow: hidden; background: linear-gradient(180deg, #fbfcfa 0%, #eff9f6 100%); }
.showcase-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 22px; }
.showcase-card { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 18px 42px rgba(27, 80, 75, .08); }
.showcase-card a { display: block; overflow: hidden; border-bottom: 1px solid var(--line); background: #eef7f4; }
.showcase-card img { display: block; width: 100%; height: auto; object-fit: contain; transition: transform 280ms ease; }
.showcase-card:hover img { transform: scale(1.018); }
.showcase-card figcaption { display: grid; gap: 4px; padding: 17px 20px 19px; }
.showcase-card figcaption span { color: var(--teal); font-size: .74rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.showcase-card figcaption strong { font: 800 clamp(1.05rem, 2vw, 1.28rem)/1.1 var(--display); letter-spacing: -.035em; }
.showcase-primary { grid-column: 1 / -1; }
.showcase-dashboard { grid-column: span 6; }
.showcase-bank { grid-column: span 6; }
.screen-note { margin: 21px 0 0; color: var(--ink-soft); font-size: .87rem; text-align: center; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process { position: relative; padding: 16px 12px 10px 0; }
.process:not(:last-child)::after { position: absolute; top: 39px; right: -10px; width: 22px; height: 1px; background: #a6ccc4; content: ""; }
.step { display: grid; width: 55px; height: 55px; place-items: center; border-radius: 50%; background: var(--white); box-shadow: 0 0 0 10px rgba(255,255,255,0.48); color: var(--teal); font: 800 1.1rem var(--display); }
.process h3 { margin: 18px 0 8px; font: 800 1.25rem/1.1 var(--display); letter-spacing: -0.035em; }
.process p { margin: 0; color: var(--ink-soft); }

.split-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; padding: 44px; border-radius: 28px; background: linear-gradient(118deg, #e1f5ef, #fbfefc 63%, #fff3d8); border: 1px solid #d7e9e2; }
.split-band h2 { max-width: 460px; margin: 12px 0; font: 800 clamp(2rem, 4vw, 3.25rem)/1 var(--display); letter-spacing: -0.06em; }
.split-band p { color: var(--ink-soft); }
.team-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.team-role { padding: 15px; border: 1px solid rgba(154, 198, 189, 0.65); border-radius: 12px; background: rgba(255,255,255,0.76); }
.team-role b { display: block; font-size: 0.93rem; }
.team-role span { color: var(--ink-soft); font-size: 0.82rem; }

.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.pricing-preview > .price-card,
.pricing-preview > .price-card.featured {
  align-self: stretch;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  position: relative;
  top: auto;
  translate: none;
  transform: none;
}
.pricing-preview > .price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.price-card .tag { display: inline-block; min-height: 22px; color: var(--teal-deep); font-size: 0.75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { margin: 8px 0 0; font: 800 1.65rem/1 var(--display); letter-spacing: -0.05em; }
.price { margin: 18px 0 13px; font: 800 2.45rem/1 var(--display); letter-spacing: -0.06em; }
.price span { color: var(--ink-soft); font: 500 0.92rem var(--body); letter-spacing: 0; }
.price-card ul { flex: 1; margin: 0 0 22px; padding: 0; list-style: none; }
.price-card li { position: relative; padding: 6px 0 6px 23px; color: #46666d; font-size: .91rem; }
.price-card li::before { position: absolute; left: 0; color: var(--teal); content: "+"; font-weight: 900; }
.price-card .button { width: 100%; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
details { border: 1px solid var(--line); border-radius: 14px; background: white; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 800; }
details p { margin: 12px 0 0; color: var(--ink-soft); }

.page-hero { padding: 76px 0 44px; }
.page-hero h1 { max-width: 800px; font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
.page-hero .lede { max-width: 760px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; padding-bottom: 80px; }
.content-card { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 14px 35px rgba(27, 80, 75, .05); }
.content-card h2 { margin: 34px 0 10px; font: 800 1.65rem/1.1 var(--display); letter-spacing: -0.04em; }
.content-card h2:first-child { margin-top: 0; }
.content-card p, .content-card li { color: var(--ink-soft); }
.content-card li { margin: 9px 0; }
.side-card { position: sticky; top: 105px; padding: 24px; border-radius: 18px; background: var(--teal-pale); border: 1px solid #cce7e0; }
.side-card h3 { margin: 0 0 10px; font: 800 1.35rem/1 var(--display); letter-spacing: -0.04em; }
.side-card p { color: var(--ink-soft); font-size: .92rem; }
.side-card .button { width: 100%; margin-top: 8px; }
.install-steps { counter-reset: install; display: grid; gap: 13px; padding: 0; list-style: none; }
.install-steps li { position: relative; min-height: 68px; padding: 16px 16px 16px 66px; border: 1px solid var(--line); border-radius: 13px; background: #fcfefd; }
.install-steps li::before { position: absolute; top: 15px; left: 15px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--teal); color: white; content: counter(install); counter-increment: install; font-weight: 850; }

.site-footer { border-top: 1px solid var(--line); background: #f5faf8; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(2, 1fr); gap: 34px; padding: 48px 0 28px; }
.footer-grid h3 { margin: 0 0 10px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid p, .footer-grid a { display: block; margin: 5px 0; color: var(--ink-soft); font-size: .92rem; text-decoration: none; }
.footer-grid a:hover { color: var(--teal-deep); }
.footer-mark { display: flex; align-items: center; gap: 10px; font: 800 1.25rem var(--display); letter-spacing: -0.04em; }
.footer-mark img { width: 34px; height: 34px; }
.copyright { padding: 16px 0 28px; border-top: 1px solid var(--line); color: #6d8789; font-size: .82rem; }

.error-page { display: grid; min-height: 100vh; max-width: 720px; margin: 0 auto; padding: 52px 28px; place-content: center start; background: radial-gradient(circle at 75% 18%, #fff0c8, transparent 32%), linear-gradient(135deg, #f5fcfa, #fffdf8); }
.error-page .brand { margin-bottom: 74px; }
.error-code { color: var(--teal); font: 850 clamp(5rem, 16vw, 10rem)/.8 var(--display); letter-spacing: -0.12em; }
.error-page h1 { max-width: 560px; margin: 20px 0 12px; font: 850 clamp(2.4rem, 7vw, 4.2rem)/.95 var(--display); letter-spacing: -0.07em; }
.error-page p { max-width: 510px; color: var(--ink-soft); font-size: 1.1rem; }

@keyframes float-in { from { opacity: 0; transform: translateY(22px) rotate(-2deg); } to { opacity: 1; transform: translateY(0) rotate(1.5deg); } }
@media (max-width: 900px) {
  .hero-grid, .split-band, .content-grid { grid-template-columns: 1fr; }
  .product-frame { max-width: 610px; margin: 0 auto; }
  .feature-grid, .pricing-preview { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-primary, .showcase-dashboard, .showcase-bank { grid-column: auto; }
  .price-card.featured { transform: none; }
  .side-card { position: static; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .announcement .container { text-align: center; }
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { justify-content: flex-start; gap: 10px 15px; }
  .nav-links a { font-size: .83rem; }
  .hero { padding: 56px 0; }
  .section { padding: 56px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 14px; }
  .process-grid, .team-list, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .process:not(:last-child)::after { display: none; }
  .split-band, .content-card { padding: 25px; }
  .app-body { grid-template-columns: 76px 1fr; }
  .app-side { padding: 12px 7px; }
  .app-side span, .app-side b { padding: 7px 4px; font-size: .55rem; }
  .app-main { padding: 14px; }
  .metric-grid { grid-template-columns: 1fr; }
}
