:root {
  --ink: #071221;
  --navy: #061629;
  --blue: #0d5f9f;
  --cyan: #18d6ea;
  --teal: #15b7b0;
  --paper: #f4f8fb;
  --white: #ffffff;
  --muted: #607083;
  --line: rgba(7, 18, 33, 0.12);
  --shadow: 0 24px 70px rgba(7, 18, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(6, 22, 41, 0.94);
  border-bottom: 1px solid rgba(24, 214, 234, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--white);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.brand span {
  color: var(--cyan);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus {
  color: var(--white);
  border-color: rgba(24, 214, 234, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.nav .nav-cta {
  color: var(--navy);
  background: var(--cyan);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero img {
  width: 100%;
  min-height: calc(100vh - 76px);
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.94), rgba(6, 22, 41, 0.58) 42%, rgba(6, 22, 41, 0.12) 72%),
    linear-gradient(0deg, rgba(6, 22, 41, 0.76), rgba(6, 22, 41, 0.02) 44%);
}

.hero-copy {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  top: 50%;
  z-index: 2;
  width: min(680px, calc(100% - 36px));
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7vw, 7.2rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.24rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
}

.hero-actions,
.store-rescue {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), #85fbff);
  box-shadow: 0 16px 34px rgba(24, 214, 234, 0.2);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: rgba(7, 18, 33, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

.promise-band {
  display: grid;
  gap: 6px;
  padding: 28px 18px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(90deg, #04101f, #0e3353, #04101f);
  border-top: 1px solid rgba(24, 214, 234, 0.22);
  border-bottom: 1px solid rgba(24, 214, 234, 0.22);
}

.promise-band span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.promise-band strong {
  color: var(--cyan);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.store-box-preview {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(36px, 5vw, 62px) auto 0;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 22%, rgba(24, 214, 234, 0.2), transparent 24rem),
    linear-gradient(135deg, #061629, #0b3150);
  border: 1px solid rgba(24, 214, 234, 0.24);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.store-box-preview h2 {
  max-width: 860px;
  color: var(--white);
}

.store-box-preview p:not(.eyebrow) {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.store-box-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.section,
.process-section,
.store-rescue,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 8vw, 118px) 0;
}

.split,
.ai-section,
.two-lanes,
.care-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.split p,
.care-copy p,
.contact-copy p,
.text-block p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.package-grid,
.example-grid,
.care-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article,
.example-grid article,
.care-grid article,
.package-card,
.callout-card,
.text-block,
.contact-form {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(7, 18, 33, 0.07);
}

.feature-grid span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--navy);
  background: rgba(24, 214, 234, 0.14);
  border-radius: 999px;
  font-weight: 900;
}

.packages {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(24, 214, 234, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 22%, rgba(21, 183, 176, 0.14), transparent 30rem),
    linear-gradient(135deg, #051426, #071f39 58%, #03101e);
}

.packages h2 {
  color: var(--white);
}

.packages .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  display: grid;
  gap: 14px;
  align-content: start;
  color: var(--ink);
}

.package-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(24, 214, 234, 0.24), transparent 18rem),
    linear-gradient(145deg, #09233f, #0b3653);
  border-color: rgba(24, 214, 234, 0.38);
  transform: translateY(-12px);
}

.package-card.featured h3,
.package-card.featured .package-kicker {
  color: var(--white);
}

.package-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.package-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  color: var(--muted);
}

.package-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal);
  font-weight: 900;
}

.process-section {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-grid article {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(7, 18, 33, 0.07);
}

.process-grid strong {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 1.4rem;
}

.process-grid span {
  color: var(--navy);
  font-weight: 900;
}

.callout-card {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(24, 214, 234, 0.18), transparent 22rem),
    linear-gradient(145deg, var(--navy), #0b3150);
  border-color: rgba(24, 214, 234, 0.24);
}

.callout-card h2 {
  color: var(--white);
}

.callout-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.examples article {
  min-height: 170px;
  border-top: 4px solid var(--teal);
}

.ai-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 24%, rgba(24, 214, 234, 0.18), transparent 28rem),
    linear-gradient(135deg, #061629, #0b2744);
  border: 1px solid rgba(24, 214, 234, 0.22);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.ai-section h2 {
  color: var(--white);
}

.ai-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.ai-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-list span {
  padding: 10px 13px;
  color: var(--white);
  border: 1px solid rgba(24, 214, 234, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.two-lanes article {
  min-height: 320px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.care-section {
  align-items: start;
}

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

.care-grid article {
  border-left: 5px solid var(--cyan);
}

.store-rescue {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 7vw, 90px);
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(135deg, #071221, #0d3352);
  border: 1px solid rgba(24, 214, 234, 0.24);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.store-rescue h2 {
  color: var(--white);
}

.store-rescue p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  align-items: start;
  padding-top: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbfd;
  border: 1px solid #c7d4df;
  border-radius: 10px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  cursor: pointer;
}

.footer {
  padding: 34px 18px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: #04101f;
}

.footer p {
  margin: 4px 0;
}

.footer strong {
  color: var(--white);
}

.ideas-hero {
  min-height: 610px;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(24, 214, 234, 0.24), transparent 30rem),
    radial-gradient(circle at 12% 82%, rgba(21, 183, 176, 0.2), transparent 28rem),
    linear-gradient(135deg, #04101f, #071f39 56%, #03101e);
}

.ideas-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
}

.ideas-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.ideas-card {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(24, 214, 234, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.ideas-card h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.showroom-intro {
  max-width: 980px;
  text-align: center;
}

.showroom-intro h2 {
  font-size: clamp(2.3rem, 5vw, 5.4rem);
}

.showroom-intro p {
  color: var(--muted);
  font-size: 1.1rem;
}

.store-showroom {
  padding-top: 0;
}

.store-idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.store-idea-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 420px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(7, 18, 33, 0.08);
}

.store-idea-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  font-weight: 900;
}

.store-idea-card h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.store-idea-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.store-idea-card strong {
  color: var(--navy);
}

.store-idea-card .button {
  align-self: end;
  margin-top: 8px;
}

.store-box-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(46px, 7vw, 88px);
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #071221, #0d3352);
  border: 1px solid rgba(24, 214, 234, 0.24);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.store-box-section h2 {
  max-width: 820px;
  color: var(--white);
}

.store-box-section p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .split,
  .split.reverse,
  .ai-section,
  .two-lanes,
  .care-section,
  .contact-section,
  .store-box-preview,
  .ideas-hero {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .example-grid,
  .store-idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .package-card.featured {
    transform: none;
  }

  .store-box-actions {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

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

  .hero img {
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-position: center;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    position: static;
    width: auto;
    padding: 30px 18px 42px;
    background: var(--navy);
    transform: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-actions .button,
  .store-rescue .button,
  .contact-form .button,
  .store-box-actions .button,
  .store-box-section .button {
    width: 100%;
  }

  .feature-grid,
  .package-grid,
  .example-grid,
  .process-grid,
  .store-idea-grid {
    grid-template-columns: 1fr;
  }

  .nav a {
    flex: 1 1 44%;
    justify-content: center;
  }

  .store-box-section {
    align-items: stretch;
    flex-direction: column;
  }
}
