@font-face {
  font-family: "Inter";
  src: url("public/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CuteBee";
  src: url("public/fonts/CuteBee-MALon.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sunflower";
  src: url("public/fonts/Sunflower.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HoneyBee";
  src: url("public/fonts/HoneyBee-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Hexcore";
  src: url("public/fonts/Hexcore.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


:root {
  --ink: #082933;
  --navy: #1b3f49;
  --deep: #082933;
  --blue: #88a3cc;
  --teal: #ff8f44;
  --sage: #8fbb76;
  --mint: #edf3eb;
  --gold: #ffcd6d;
  --orange: #ff8f44;
  --coral: #ff6f54;
  --ember: #e84d61;
  --paper: #fbfbfb;
  --mist: #f7f7f7;
  --line: #dbe4e8;
  --muted: #58727a;
  --shadow: 0 24px 70px rgba(8, 41, 51, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 205, 109, 0.5);
  outline-offset: 2px;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 251, 0.9);
  border-bottom: 1px solid rgba(136, 163, 204, 0.28);
  backdrop-filter: blur(16px);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 251, 251, 0.97);
  border-color: rgba(136, 163, 204, 0.38);
  box-shadow: 0 16px 38px rgba(8, 41, 51, 0.08);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.91rem;
  font-weight: 720;
}

.nav-links a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--ember));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--teal);
  border-radius: 6px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 820;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(255, 143, 68, 0.18);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms ease,
    border-color 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 38px rgba(255, 143, 68, 0.26),
    0 0 0 4px rgba(232, 77, 97, 0.09);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-secondary {
  background: var(--paper);
  color: var(--navy);
  border-color: rgba(232, 77, 97, 0.42);
  box-shadow: none;
}

.button-gold {
  width: 100%;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  font-family: "Sunflower", sans-serif;
  box-shadow: 0 13px 26px rgba(255, 205, 109, 0.26);
}

.section-band {
  background:
    radial-gradient(circle at 62% 42%, rgba(232, 77, 97, 0.14), transparent 26%),
    radial-gradient(circle at 78% 24%, rgba(255, 205, 109, 0.17), transparent 28%),
    radial-gradient(circle at 48% 82%, rgba(136, 163, 204, 0.22), transparent 34%),
    linear-gradient(112deg, rgba(8, 41, 51, 0.99), rgba(27, 63, 73, 0.96)),
    linear-gradient(var(--paper), var(--paper));
  color: #ffffff;
}

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(500px, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: 34px;
  padding: 78px 0 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "Sunflower", sans-serif;
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 21px;
  color: #ffffff;
  font-family: "Sunflower", sans-serif;
  font-size: clamp(3rem, 5.1vw, 4.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: #e8eef1;
  font-size: 1.23rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .button {
  width: 318px;
}

.hero-visual {
  position: relative;
  min-height: 565px;
}

.hero-visual::before {
  display: none;
}

.product-stage::after {
  position: absolute;
  right: -3%;
  bottom: 8%;
  left: 13%;
  height: 72px;
  border-radius: 50%;
  background: rgba(8, 41, 51, 0.26);
  filter: blur(24px);
  content: "";
}

.hero-laptop {
  position: absolute;
  right: -126px;
  bottom: calc(12% - 21px);
  z-index: 1;
  width: min(790px, 130%);
  max-width: none;
  filter: drop-shadow(0 38px 60px rgba(8, 41, 51, 0.3));
  transition: transform 500ms var(--ease);
}

.hero-phone {
  position: absolute;
  bottom: calc(5% - 21px);
  left: calc(-30% + 42px);
  z-index: 2;
  width: min(680px, 94%);
  max-width: none;
  filter: drop-shadow(0 32px 44px rgba(8, 41, 51, 0.34));
  transition: transform 500ms var(--ease);
}

.product-stage:hover .hero-laptop {
  transform: translate3d(0, -6px, 0) scale(1.01);
}

.product-stage:hover .hero-phone {
  transform: translate3d(0, -7px, 0) rotate(-0.7deg) scale(1.012);
}

.mini-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

#legacy {
  padding-top: 38px;
}

.section-tint {
  background: var(--mist);
}

.section-heading {
  max-width: 600px;
}

.section-heading.wide {
  max-width: 890px;
  margin-bottom: 38px;
}

#legacy .section-heading.wide {
  margin-top: 72px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.icon-grid,
.migration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.migration-card,
.capability-grid article,
.step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(8, 41, 51, 0.05);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms ease;
}

.info-card:hover,
.migration-card:hover,
.capability-grid article:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 143, 68, 0.34);
  box-shadow: 0 20px 46px rgba(8, 41, 51, 0.1);
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 285px;
  border-left: 0;
  padding-left: 36px;
}

.info-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--sage);
  content: "";
}

.info-card.accent-gold::before {
  background: var(--gold);
}

.info-card.accent-coral::before {
  background: var(--coral);
}

.info-card p,
.migration-card p,
.capability-grid p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  padding: 32px 32px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(8, 41, 51, 0.05);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 24px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 1;
  opacity: 0.6;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 143, 68, 0.34);
  box-shadow: 0 20px 46px rgba(8, 41, 51, 0.1);
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  display: inline-flex;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.testimonial-avatar.avatar-gold {
  background: var(--gold);
  color: var(--deep);
}

.testimonial-avatar.avatar-sage {
  background: var(--sage);
}

.testimonial-avatar.avatar-coral {
  background: var(--coral);
}

.author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.author-name {
  color: var(--navy);
  font-weight: 800;
}

.author-role {
  color: var(--muted);
  font-size: 0.88rem;
}

.care-mosaic {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 520px;
  gap: 18px;
  margin-top: 32px;
}

.mosaic-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 520px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 18px 45px rgba(8, 41, 51, 0.08);
}

.photo-panel.feature {
  min-height: 520px;
}

.photo-panel img,
.care-story img,
.photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.photo-panel:hover img,
.care-story figure:hover img,
.photo-ribbon img:hover {
  transform: scale(1.035);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 54px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 850;
}

.step-card h3 {
  margin-bottom: 8px;
}

.care-story {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  align-items: center;
  gap: 44px;
  margin-top: 58px;
}

.care-story figure {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-story img {
  object-position: center top;
}

.care-story h3 {
  max-width: 620px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.care-story p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.capabilities {
  background:
    linear-gradient(180deg, rgba(251, 251, 251, 0.94), rgba(251, 251, 251, 0.94)),
    linear-gradient(90deg, var(--mint), rgba(136, 163, 204, 0.18), rgba(255, 205, 109, 0.22));
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.capability-grid article {
  min-height: 250px;
  padding: 30px;
  border-top: 5px solid var(--sage);
}

.capability-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.capability-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.capability-grid article:nth-child(4) {
  border-top-color: var(--coral);
}

.photo-ribbon {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 18px;
  margin-top: 30px;
}

.photo-ribbon img {
  min-height: 340px;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 41, 51, 0.09);
}

.photo-ribbon img:first-child {
  object-position: center top;
}

.photo-ribbon img:last-child {
  object-position: center;
}

.migration-card {
  padding: 28px;
}

.final-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 205, 109, 0.18), transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(232, 77, 97, 0.18), transparent 28%),
    linear-gradient(115deg, var(--deep), var(--navy));
  color: #ffffff;
}

.final-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 68px;
  align-items: center;
}

.final-grid h2 {
  color: #ffffff;
  font-family: "Sunflower", sans-serif;
}

.final-grid p {
  color: #e8eef1;
  font-size: 1.12rem;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(136, 163, 204, 0.24);
  border-radius: 10px;
  background: rgba(251, 251, 251, 0.08);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 780;
}

.demo-form input {
  min-height: 49px;
  width: 100%;
  border: 1px solid rgba(136, 163, 204, 0.34);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 13px;
  outline: none;
}

.demo-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 205, 109, 0.28);
}

.demo-form .button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #e8eef1;
  font-size: 0.92rem;
}

.site-footer {
  padding: 58px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.8fr);
  gap: 42px;
  align-items: start;
}

.footer-brand p {
  max-width: 360px;
  margin: 26px 0 0;
  color: var(--muted);
}

.footer-brand .brand {
  transform: translateY(-8px);
}

.footer-column {
  display: grid;
  gap: 11px;
  padding-top: 8px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a {
  color: #466a72;
  font-size: 0.94rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    transform 180ms var(--ease);
}

.footer-column a:hover {
  color: var(--ember);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom span:first-child {
  color: var(--navy);
  font-weight: 820;
}

.reveal {
  opacity: 0.12;
  transform: translateY(14px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .split-section,
  .final-grid,
  .care-story {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-laptop {
    right: -8%;
    width: min(860px, 112%);
  }

  .hero-phone {
    width: min(380px, 50%);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .hero-grid {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-phone {
    width: min(310px, 46%);
  }

  .icon-grid,
  .migration-grid,
  .capability-grid,
  .testimonial-grid,
  .demo-form,
  .care-mosaic,
  .photo-ribbon {
    grid-template-columns: 1fr;
  }

  .care-mosaic {
    grid-template-rows: none;
  }

  .photo-panel.feature {
    grid-row: auto;
    min-height: 280px;
  }

  .mosaic-stack {
    min-height: 0;
  }

  .care-story figure {
    aspect-ratio: 4 / 5;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-laptop {
    right: -42%;
    bottom: 7%;
    width: 138%;
  }

  .hero-phone {
    left: -18%;
    bottom: 4%;
    width: 58%;
  }
}

/* "Buzz" — Sunflower accent */
.buzz-word {
  font-family: "Sunflower", sans-serif;
  font-weight: 100;
  color: #f5a800;
}