@font-face {
  font-family: "Gabarito";
  src: url(../fonts/gabarito-latin.woff2) format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url(../fonts/figtree-latin.woff2) format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f4f7f4;
  --white: #ffffff;
  --navy: #0c2a22;
  --navy-2: #566b60;
  --yellow: #0b7a4c;
  --yellow-d: #095f3c;
  --on-yellow: #ffffff;
  --copper: #b4501f;
  --copper-l: #f8ebe3;
  --green: #0b7a4c;
  --green-l: #e4f3eb;
  --blue: #25608f;
  --line: #dfe7e1;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bar-h: 0px;
  color-scheme: light;
  font-synthesis-weight: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family:
    "Figtree",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--bar-h);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--yellow);
  color: var(--navy);
}
:root {
  scrollbar-color: #a9bdb2 var(--cream);
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: #a9bdb2;
  border: 3px solid var(--cream);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--navy-2);
}
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
a {
  color: inherit;
  text-underline-offset: 0.18em;
}
:where(h1, h2, h3, h4) {
  margin: 0;
  font-family: "Gabarito", "Figtree", system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-weight: 800;
  text-wrap: balance;
}
p {
  margin: 0;
}
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.bg-white {
  background: var(--white);
}
h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.75rem);
}
.sub {
  margin-top: 1rem;
  color: var(--navy-2);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 62ch;
}
.center {
  text-align: center;
}
.center .sub {
  margin-inline: auto;
}

/* ---------- motion ---------- */
.rise {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rise.in {
  opacity: 1;
  transform: none;
}
.rise[data-d="1"] {
  transition-delay: 0.09s;
}
.rise[data-d="2"] {
  transition-delay: 0.18s;
}
.rise[data-d="3"] {
  transition-delay: 0.27s;
}
.rise[data-d="4"] {
  transition-delay: 0.36s;
}
.rise[data-d="5"] {
  transition-delay: 0.45s;
}

/* ---------- pill button ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6ch;
  background: var(--yellow);
  color: var(--on-yellow);
  text-decoration: none;
  font-family: "Gabarito", "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.95rem 1.7rem;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 16px -8px rgba(12, 42, 34, 0.38);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}
.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-102%) skewX(-18deg);
  transition: transform 0.6s var(--ease);
}
.pill:hover::after {
  transform: translateX(102%) skewX(-18deg);
}
.pill:hover {
  background: var(--yellow-d);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(12, 42, 34, 0.48);
}
.pill:active {
  transform: translateY(0);
}
.pill svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  flex: none;
  position: relative;
}
.pill span {
  position: relative;
}
.pill--ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--navy);
}
.pill--ghost:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: inset 0 0 0 2px var(--navy);
}
.pill--lg {
  padding: 1.1rem 2.1rem;
  font-size: 1.0625rem;
}
.bar .pill,
.safety .pill,
.screen .pill {
  box-shadow: none;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 247, 244, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.nav.stuck {
  border-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(12, 42, 34, 0.7);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45ch;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.045em;
  text-decoration: none;
  color: var(--navy);
}
.logo img {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.55rem;
  display: block;
  flex: none;
}
.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 60rem) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  text-decoration: none;
  color: var(--navy-2);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--navy);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3.5rem, 8vw, 6rem);
}
.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(52%, 44rem);
  background: var(--white);
  border-radius: 6rem 0 0 6rem;
  z-index: 0;
  display: none;
}
@media (min-width: 62rem) {
  .hero::before {
    display: block;
  }
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
}
h1 {
  font-size: clamp(2.3rem, 6.6vw, 4.05rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
  max-width: 15ch;
}
.hero .sub {
  font-size: 1.0625rem;
  max-width: 46ch;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}
.stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.avs {
  display: flex;
}
.avs i {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  font-style: normal;
}
.avs i + i {
  margin-left: -0.85rem;
}
.stat b {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat small {
  display: block;
  color: var(--navy-2);
  font-size: 0.85rem;
  font-weight: 600;
}
.stars {
  display: flex;
  gap: 0.12rem;
}
.stars svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: var(--copper);
}
.stat-div {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
/* the two stats wrap onto separate lines below this width, which would leave
   the vertical rule dangling at the end of the first line */
@media (max-width: 32rem) {
  .stat-div {
    display: none;
  }
  .stats {
    gap: 0.9rem 2rem;
  }
}
.hero-act {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.flagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.6rem;
  list-style: none;
  padding: 0;
}
.flagline li {
  display: inline-flex;
  align-items: center;
  gap: 0.5ch;
  font-size: 0.92rem;
  font-weight: 700;
}
.flagline svg {
  width: 1.45rem;
  height: 1.02rem;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(12, 42, 34, 0.12);
}

/* phone mock */
.phonewrap {
  position: relative;
  display: grid;
  place-items: center;
}
.burst {
  position: absolute;
  right: -8%;
  top: 2%;
  width: 54%;
  z-index: 0;
  color: var(--copper);
  opacity: 0.9;
}
.plusgrid {
  position: absolute;
  left: -4%;
  bottom: 2%;
  width: 30%;
  z-index: 0;
  color: var(--navy);
  opacity: 0.22;
}
.phone {
  position: relative;
  z-index: 1;
  width: min(17.5rem, 78%);
  aspect-ratio: 9/19;
  background: var(--navy);
  border-radius: 2.4rem;
  padding: 0.55rem;
  box-shadow:
    0 40px 70px -35px rgba(12, 42, 34, 0.65),
    0 0 0 1px rgba(12, 42, 34, 0.06);
  transform: rotate(-2deg) translateY(6px);
  transition: transform 1s var(--ease);
}
.rise.in .phone {
  transform: rotate(0) translateY(0);
}
.screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 0.95rem;
  gap: 0.5rem;
}
.screen .sbar {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--navy-2);
  flex: none;
}
.screen .ph-t {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.16;
  margin-top: 0.35rem;
}
.screen p {
  font-size: 0.68rem;
  color: var(--navy-2);
  line-height: 1.5;
}
.screen .mini-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}
.screen .avs i {
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.5rem;
  border-width: 1.5px;
  border-color: #fff;
}
.screen .avs i + i {
  margin-left: -0.42rem;
}
.screen .mini-stat b {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.screen .mini-stat small {
  display: block;
  font-size: 0.5rem;
  color: var(--navy-2);
  font-weight: 600;
}
.screen .pill {
  padding: 0.58rem 1.1rem;
  font-size: 0.72rem;
  align-self: flex-start;
  box-shadow: none;
  gap: 0.5ch;
}
.screen .pill svg {
  width: 0.95em;
  height: 0.95em;
}
.screen .mclabel {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.45rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.screen .mclabel em {
  font-style: normal;
  font-weight: 700;
  color: var(--navy-2);
}
.screen .minicards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.34rem;
  margin-top: 0.34rem;
}
.screen .mc {
  position: relative;
  aspect-ratio: 1.586;
  border-radius: 0.26rem;
  overflow: hidden;
  background: var(--b);
  display: grid;
  place-items: center;
}
.screen .mc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(126deg, rgba(255, 255, 255, 0.2) 0 32%, rgba(255, 255, 255, 0) 62%);
}
.screen .mc img {
  width: 54%;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  position: relative;
}
.screen .cardsrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  margin-top: 0.3rem;
}
.screen .cardsrow i {
  aspect-ratio: 1.58;
  border-radius: 0.25rem;
  display: block;
}

/* ---------- feature trio ---------- */
.trio {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 52rem) {
  .trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.feat i.ic {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--green-l);
  display: grid;
  place-items: center;
  flex: none;
}
.feat i.ic svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat h3 {
  font-size: 1.15rem;
  margin-top: 1.1rem;
}
.feat p {
  margin-top: 0.6rem;
  color: var(--navy-2);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ---------- split ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 60rem) {
  .split {
    grid-template-columns: 0.92fr 1.08fr;
  }
}
.split.rev > *:first-child {
  order: 2;
}
@media (min-width: 60rem) {
  .split--head {
    grid-template-columns: 1.55fr auto;
    align-items: end;
  }
  .split--head h2 {
    max-width: 22ch;
  }
}
@media (max-width: 59.99rem) {
  .split.rev > *:first-child {
    order: 0;
  }
}
.numlist {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.numlist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-weight: 700;
  font-size: 1rem;
}
.numlist b {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.5rem;
  background: var(--copper);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  flex: none;
  margin-top: 0.1rem;
  font-variant-numeric: tabular-nums;
}
.checks {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.checks li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--navy-2);
  font-size: 1rem;
  line-height: 1.6;
}
.checks svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  margin-top: 0.22rem;
  fill: var(--green);
}

/* chat mock */
.chat {
  background: var(--navy);
  border-radius: 2.2rem;
  padding: 0.5rem;
  max-width: 22rem;
  margin-inline: auto;
  box-shadow: 0 40px 70px -38px rgba(12, 42, 34, 0.6);
}
.chat-in {
  background: #ece5dd;
  border-radius: 1.8rem;
  overflow: hidden;
}
.chat-top {
  background: #075e54;
  color: #fff;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.chat-top i {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: 0.75rem;
  color: #075e54;
}
.chat-top b {
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
}
.chat-top small {
  font-size: 0.66rem;
  opacity: 0.75;
}
.chat-body {
  padding: 0.9rem 0.8rem 1.1rem;
  display: grid;
  gap: 0.5rem;
}
.msg {
  max-width: 84%;
  padding: 0.5rem 0.7rem;
  border-radius: 0.7rem;
  font-size: 0.78rem;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.msg.them {
  background: #fff;
  justify-self: start;
  border-top-left-radius: 0.15rem;
}
.msg.me {
  background: #dcf8c6;
  justify-self: end;
  border-top-right-radius: 0.15rem;
}
.msg em {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  color: #4a5560;
  text-align: right;
  margin-top: 0.15rem;
}

/* ---------- catalogue: gift-card wall ---------- */
.groups {
  margin-top: 2.75rem;
  display: grid;
  gap: 2rem;
}
.gwrap {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.9rem;
  box-shadow:
    0 1px 2px rgba(12, 42, 34, 0.05),
    0 20px 40px -32px rgba(12, 42, 34, 0.4);
}
.bg-white .gwrap {
  background: var(--cream);
}
.ghead {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.ghead i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 99px;
  background: var(--gc);
  flex: none;
}
.ghead em {
  margin-left: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy-2);
  background: var(--cream);
  border-radius: 99px;
  padding: 0.15rem 0.6rem;
  font-variant-numeric: tabular-nums;
}
.bg-white .ghead em {
  background: var(--white);
}
.tiles {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(7.25rem, 1fr));
}
.gc {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.gc.in {
  opacity: 1;
  transform: none;
}
.gc-face {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.586;
  border-radius: 0.6rem;
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
  box-shadow:
    0 1px 2px rgba(12, 42, 34, 0.16),
    0 9px 20px -14px rgba(12, 42, 34, 0.5);
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
}
.gc-face::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(126deg, rgba(255, 255, 255, 0.16) 0 30%, rgba(255, 255, 255, 0) 58%);
}
.gc:hover .gc-face {
  transform: translateY(-5px) rotate(-1.3deg);
  box-shadow:
    0 2px 4px rgba(12, 42, 34, 0.18),
    0 20px 34px -18px rgba(12, 42, 34, 0.6);
}
.gc-mark {
  width: 44%;
  aspect-ratio: 1;
  height: auto;
  fill: var(--mk, currentColor);
}
img.gc-mark {
  object-fit: contain;
}
.gc--wide .gc-mark {
  width: 62%;
}
.gc-mono {
  font-family: "Gabarito", "Figtree", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.055em;
  opacity: 0.46;
  line-height: 1;
}
.gc-chip {
  position: absolute;
  right: 0.5rem;
  bottom: 0.45rem;
  width: 1.05rem;
  height: 0.76rem;
  border-radius: 0.15rem;
  background: currentColor;
  opacity: 0.34;
}
.gc-chip::after {
  content: "";
  position: absolute;
  inset: 0.18rem 0.12rem;
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
  opacity: 0.55;
}
.gc-label {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--navy);
}

/* ---------- logo wall ---------- */
.wall {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  background: var(--cream);
}
.wall-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6rem, #000 calc(100% - 6rem), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6rem, #000 calc(100% - 6rem), transparent);
  position: relative;
}
.marquee {
  display: flex;
  width: max-content;
  gap: 4rem;
  align-items: center;
  animation: slide 40s linear infinite;
}
.wall:hover .marquee,
.wall:focus-within .marquee,
.wall[data-paused] .marquee {
  animation-play-state: paused;
}
.marquee img {
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  object-fit: contain;
  transition: transform 0.25s var(--ease);
}
.marquee img:hover {
  transform: scale(1.12);
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.wall-pause {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 99px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--navy-2);
}
.wall-pause:hover {
  color: var(--navy);
}
.wall-pause svg {
  width: 0.8rem;
  height: 0.8rem;
  fill: currentColor;
}
.wall-pause .ico-play {
  display: none;
}
.wall[data-paused] .wall-pause .ico-play {
  display: block;
}
.wall[data-paused] .wall-pause .ico-pause {
  display: none;
}

/* ---------- why choose ---------- */
.why {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}
@media (min-width: 40rem) {
  .why {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 68rem) {
  .why {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why div {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem 1.6rem;
  background: var(--cream);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.bg-white .why div {
  background: var(--white);
}
.why div:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
  box-shadow: 0 24px 44px -34px rgba(12, 42, 34, 0.5);
}
.why i {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  background: var(--copper-l);
  display: grid;
  place-items: center;
  flex: none;
}
.why i svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why h3 {
  font-size: 1.06rem;
  margin-top: 1.05rem;
  letter-spacing: -0.03em;
}
.why p {
  margin-top: 0.55rem;
  color: var(--navy-2);
  font-size: 0.95rem;
  line-height: 1.62;
}

/* ---------- before you trade ---------- */
.guide {
  margin-top: 2.75rem;
  display: grid;
  gap: 0;
}
@media (min-width: 60rem) {
  .guide {
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
  }
}
.guide article {
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  gap: 0 1rem;
}
.guide b {
  font-family: "Gabarito", "Figtree", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.05em;
  padding-top: 0.1rem;
}
.guide h3 {
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}
.guide p {
  margin-top: 0.5rem;
  color: var(--navy-2);
  font-size: 0.95rem;
  line-height: 1.62;
}
.guide-foot {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}
.guide-foot > span {
  color: var(--navy-2);
  font-size: 0.95rem;
  max-width: 40ch;
}

/* ---------- safety band ---------- */
.safety {
  background: var(--navy);
  color: #fff;
}
.safety h2 {
  max-width: 17ch;
}
.safety .hot {
  color: var(--yellow);
  position: relative;
  white-space: nowrap;
}
.safety .hot::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.03em;
  height: 0.08em;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.9s var(--ease) 0.3s;
}
.safety.in .hot::after {
  transform: scaleX(1);
}
.safety p {
  color: #afb7cc;
  max-width: 60ch;
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.safety p + p {
  margin-top: 0.9rem;
}
.safety strong {
  color: #fff;
}

/* ---------- pay cards ---------- */
.pays {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
}
@media (min-width: 46rem) {
  .pays {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}
.pay {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow:
    0 1px 2px rgba(12, 42, 34, 0.05),
    0 24px 44px -34px rgba(12, 42, 34, 0.45);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.bg-white .pay {
  background: var(--cream);
}
.pay:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(12, 42, 34, 0.06),
    0 34px 56px -34px rgba(12, 42, 34, 0.55);
}
.pay h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
}
.pay h3 i {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: var(--green-l);
  display: grid;
  place-items: center;
  flex: none;
}
.pay h3 svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pay p {
  margin-top: 0.85rem;
  color: var(--navy-2);
  font-size: 0.98rem;
}
.pay dl {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1rem;
  font-size: 0.95rem;
}
.pay dt {
  color: var(--navy-2);
  display: flex;
  align-items: center;
  gap: 0.5ch;
}
.pay dt svg {
  width: 1.3rem;
  height: 0.92rem;
  border-radius: 2px;
  flex: none;
  box-shadow: 0 0 0 1px rgba(12, 42, 34, 0.12);
}
.pay dd {
  margin: 0;
  font-weight: 700;
}

/* ---------- testimonials ---------- */
.quotes {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
}
@media (min-width: 46rem) {
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 72rem) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}
.q {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.6rem;
  box-shadow:
    0 1px 2px rgba(12, 42, 34, 0.05),
    0 20px 40px -34px rgba(12, 42, 34, 0.4);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.bg-white .q {
  background: var(--cream);
}
.q:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(12, 42, 34, 0.06),
    0 30px 52px -34px rgba(12, 42, 34, 0.5);
}
.q h3 {
  font-size: 1rem;
  margin-top: 0.9rem;
}
.q p {
  margin-top: 0.6rem;
  color: var(--navy-2);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}
.who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.who i {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: 0.82rem;
  color: #fff;
  flex: none;
}
.who b {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}
.who small {
  display: block;
  color: var(--navy-2);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- faq ---------- */
.faq {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
  max-width: 56rem;
}
.faq details {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(12, 42, 34, 0.05);
}
.bg-white .faq details {
  background: var(--cream);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  flex: none;
  width: 0.66rem;
  height: 0.66rem;
  margin-top: 0.4rem;
  border-right: 2.4px solid var(--green);
  border-bottom: 2.4px solid var(--green);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
}
.faq .ans {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq details[open] .ans {
  grid-template-rows: 1fr;
}
.faq .ans > div {
  overflow: hidden;
}
.faq .ans p {
  padding: 0 1.35rem 1.25rem;
  color: var(--navy-2);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------- yellow CTA ---------- */
.cta {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.cta-box {
  background: var(--copper-l);
  border-radius: 1.75rem;
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 60rem) {
  .cta-box {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 3.25rem 3.5rem;
  }
}
.cta-box h2 {
  max-width: 16ch;
}
.cta-box p {
  margin-top: 0.9rem;
  font-weight: 600;
  max-width: 46ch;
}
.cta-box .pill {
  margin-top: 1.75rem;
}
.cta-phone {
  justify-self: center;
}
.cta-phone .phone {
  width: min(15rem, 74%);
  transform: rotate(-3deg);
}

/* ---------- footer ---------- */
footer {
  background: var(--white);
  padding-block: clamp(2.5rem, 6vw, 4rem) 0;
}
.fgrid {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 56rem) {
  .fgrid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 3rem;
  }
}
.fgrid h3 {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.fgrid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.fgrid a {
  color: var(--navy-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}
.fgrid a:hover {
  color: var(--navy);
}
.fabout p {
  margin-top: 0.9rem;
  color: var(--navy-2);
  font-size: 0.95rem;
  max-width: 34ch;
}
.fbot {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-block: 1.25rem 1.5rem;
  text-align: center;
  color: var(--navy-2);
  font-size: 0.85rem;
}

/* ---------- sticky bar ---------- */
.bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--navy);
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(115%);
  transition: transform 0.5s var(--ease);
}
.bar.up {
  transform: translateY(0);
}
.bar-txt {
  color: #afb7cc;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
@media (min-width: 34rem) {
  .bar-txt {
    display: block;
  }
}
.bar .pill {
  flex: 1;
  padding: 0.8rem 1.4rem;
}
@media (min-width: 34rem) {
  .bar .pill {
    flex: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .rise,
  .tiles li {
    opacity: 1 !important;
    transform: none !important;
  }
  .phone {
    transform: none !important;
  }
}
