:root {
  --blue: #0069b4;
  --blue-dark: #00579b;
  --cyan: #08b4ee;
  --sky: #eefdff;
  --ink: #071629;
  --muted: #5c6d7a;
  --line: #e8eef3;
  --footer: #061326;
  --footer-soft: #0c2444;
  --shadow: 0 12px 34px rgba(7, 22, 41, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(100% - 32px, 1140px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #d7eef8;
}

.nav {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-grid;
  gap: 0;
  line-height: 1;
}

.brand-mark {
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark span {
  color: #148ede;
}

.brand small {
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  color: #566776;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue);
}

.static-nav {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: #08aef0;
}

.btn-dark {
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 10px 18px rgba(0, 87, 155, 0.18);
}

.nav-toggle,
.hamburger {
  display: none;
}

.hero {
  background: #eefdff;
  padding: 66px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  color: #28485e;
  font-weight: 600;
}

.eyebrow.blue {
  color: #168bd3;
  text-align: center;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 22px;
  color: #344b5c;
  font-size: 14px;
  font-weight: 500;
}

.hero-media img {
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.section {
  padding: 76px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 108px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #edf2f6;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.22;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: #637481;
  font-size: 12px;
  line-height: 1.45;
}

.icon,
.step-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  font-size: 23px;
  font-weight: 900;
}

.bubble-blue { background: #d7f4ff; }
.bubble-purple { background: #f2d7ff; color: #b34feb; }
.bubble-green { background: #edffc7; color: #8bc100; }
.bubble-yellow { background: #fff1c8; color: #ffad12; }
.bubble-orange { background: #ffe4d2; color: #ff812d; }
.bubble-pink { background: #ffdce7; color: #ff4675; }

.stats-band {
  background: linear-gradient(90deg, #0066ae, #09b8ef);
  color: #fff;
  padding: 24px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat {
  position: relative;
  padding-left: 52px;
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.stat span {
  display: block;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
}

.stat p {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.process-section {
  background: var(--sky);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
  padding-top: 18px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 43px;
  height: 2px;
  border-top: 2px dashed #8bd8f6;
}

.process-step {
  position: relative;
  text-align: center;
}

.step-icon {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  background: #fff;
  color: #20aeea;
  border: 4px solid #d2f3ff;
  box-shadow: 0 8px 18px rgba(13, 137, 191, 0.15);
}

.process-step h3 {
  margin: 14px 0 5px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: #657581;
  font-size: 12px;
  line-height: 1.45;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 36px;
  align-items: center;
}

.rounded-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.benefit-copy .eyebrow {
  text-align: left;
}

.benefit-copy h2 {
  margin-bottom: 14px;
}

.benefit-copy > p {
  color: #536574;
  font-size: 14px;
  font-weight: 500;
}

.accordion-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 900;
}

summary::after {
  content: "+";
  float: right;
  color: #8a96a0;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 8px 0 0;
  color: #687986;
  font-size: 12px;
}

.app-banner {
  overflow: hidden;
  background: linear-gradient(90deg, #0cb9ee 0%, #0063aa 100%);
  color: #fff;
}

.app-grid {
  min-height: 398px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.app-copy {
  max-width: 550px;
}

.app-copy h2 {
  margin-bottom: 16px;
}

.app-copy p:not(.eyebrow) {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.93);
}

.store-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.store-row img {
  height: 47px;
  border-radius: 5px;
}

.phone-stack {
  position: relative;
  align-self: end;
  height: 398px;
}

.phone {
  position: absolute;
  bottom: 0;
  width: 230px;
  border: 8px solid #162942;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.phone-front {
  left: 12%;
  height: 330px;
}

.phone-back {
  right: 7%;
  height: 390px;
}

.looms {
  padding-top: 70px;
}

.loom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  text-align: center;
}

.loom-grid img {
  width: 205px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}

.loom-grid h3 {
  margin: 0;
  color: #0069b4;
  font-size: 17px;
  font-weight: 900;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid #dfe8ef;
  border-radius: 6px;
  background: #fff;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
}

.blog-card div {
  padding: 16px 16px 18px;
}

.blog-card h3 {
  margin-bottom: 8px;
  min-height: 58px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.blog-card p {
  margin-bottom: 12px;
  color: #697b88;
  font-size: 12px;
}

.blog-card a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.loading-card {
  min-height: 100%;
}

.blog-archive-hero {
  padding: 72px 0 42px;
  background: var(--sky);
  text-align: center;
}

.blog-archive-hero h1 {
  max-width: 850px;
  margin-inline: auto;
}

.blog-archive-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px auto 0;
  color: #536574;
  font-weight: 600;
}

.blog-detail {
  padding: 58px 0 76px;
  background: #fff;
}

.blog-detail-inner {
  max-width: 900px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.blog-detail .eyebrow {
  text-align: left;
}

.blog-detail h1 {
  max-width: 850px;
  margin-bottom: 16px;
}

.blog-summary {
  max-width: 760px;
  color: #536574;
  font-size: 18px;
  font-weight: 600;
}

.blog-hero-image {
  width: 100%;
  margin: 34px 0;
  border-radius: 8px;
  aspect-ratio: 1.78;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.blog-content {
  color: #273b4c;
  font-size: 16px;
}

.blog-content h2 {
  margin: 34px 0 12px;
  font-size: 28px;
}

.blog-content h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 900;
}

.blog-content p,
.blog-content li {
  color: #4e6170;
  font-weight: 500;
}

.blog-content ul,
.blog-content ol {
  padding-left: 22px;
}

.centered {
  width: max-content;
  margin: 34px auto 0;
}

.contact-section {
  background: var(--sky);
  padding: 60px 0;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 19px 22px;
  background: #fff;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.contact-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
}

.contact-card p {
  margin: 0;
  color: #2487c4;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.contact-card strong {
  color: var(--ink);
  font-size: 14px;
}

.footer {
  padding: 30px 0 34px;
  background: var(--sky);
}

.footer-inner {
  overflow: hidden;
  color: #b8cadb;
  background: var(--footer);
  border-radius: 8px;
  border-top: 5px solid #f7c245;
}

.cities {
  padding: 24px 28px;
  background: #0b2548;
}

.cities h3,
.footer-grid h3 {
  margin: 0 0 14px;
  color: #d8eaff;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.city-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.city-tags span {
  padding: 7px 13px;
  border-radius: 4px;
  background: #123760;
  color: #c8dcf0;
  font-size: 11px;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1fr;
  gap: 46px;
  padding: 34px 30px 44px;
}

.footer-brand .brand-mark {
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: #aebfd0;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 30px;
  background: #040d1b;
}

.footer-bottom p {
  margin: 0;
  color: #d2deea;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hamburger {
    display: inline-grid;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--blue);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .static-nav {
    display: flex;
    grid-column: auto;
    justify-self: end;
    gap: 18px;
  }

  .nav-toggle:checked ~ .nav-links,
  .nav-toggle:checked ~ .nav-cta {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .nav-toggle:checked ~ .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0 4px;
  }

  .nav-toggle:checked ~ .nav-cta {
    width: max-content;
    margin-bottom: 16px;
  }

  .hero-grid,
  .benefits-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 44px 0 64px;
  }

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

  .stats-grid,
  .loom-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-line::before {
    display: none;
  }

  .app-grid {
    padding-top: 54px;
  }

  .phone-stack {
    height: 360px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .brand-mark {
    font-size: 29px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .section {
    padding: 54px 0;
  }

  .feature-grid,
  .stats-grid,
  .process-line,
  .loom-grid,
  .blog-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .stat {
    min-height: 48px;
  }

  .phone-stack {
    height: 315px;
  }

  .phone {
    width: 170px;
  }

  .phone-front {
    left: 0;
    height: 260px;
  }

  .phone-back {
    right: 0;
    height: 310px;
  }

  .loom-grid {
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
