:root {
  --cream: #f7f5e1;
  --cream-deep: #f0eeda;
  --ink: #2a2d38;
  --ink-soft: #5b5e6b;
  --line: rgba(42, 45, 56, 0.12);
  --wash-coral: #f7ddc9;
  --wash-mint: #dcefe1;
  --wash-lilac: #e3dff2;
  --accent-coral: #e3a278;
  --accent-teal: #6fe0d2;
  --navy: #232738;
  --navy-deep: #1b1e2b;
  --navy-line: rgba(255, 255, 255, 0.14);
  --radius-lg: 24px;
  --radius-md: 14px;
  --ease-pull: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --sky: #b6ced7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  color: inherit;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
}
button {
  border: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent-coral);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3,
blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}
h2 {
  font-size: clamp(38px, 5.2vw, 72px);
  letter-spacing: -2.5px;
}
em {
  font-weight: 400;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
img.missing {
  visibility: hidden;
}
.wrap {
  width: min(1200px, calc(100% - 80px));
  margin: auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 25px;
  border-radius: 100px;
  background: var(--accent-coral);
  font-size: 12px;
  font-weight: 500;
  transition:
    transform 150ms ease,
    opacity 150ms ease;
}
.button:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}
.button.small {
  padding: 12px 21px;
}
.outline {
  background: transparent;
  border: 1px solid var(--ink);
}
.pill {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 12px;
  font-size: 10px;
  white-space: nowrap;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.skip {
  position: fixed;
  top: -100px;
  z-index: 30;
  background: var(--cream);
  padding: 15px;
}
.skip:focus {
  top: 10px;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background 0.2s;
}
.header.scrolled,
.header.menu-open {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -1.3px;
}
.brand-dot {
  font-size: 10px;
  align-self: flex-start;
  margin-top: 5px;
  margin-left: -5px;
}
.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
}
.brand-mark svg {
  width: 100%;
  stroke: currentColor;
  stroke-width: 1.3;
}
.brand-mark img {
  position: absolute;
  inset: 0;
}
.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  font-size: 11px;
}
.nav-center,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.menu-toggle {
  display: none;
}
.sky {
  background:
    radial-gradient(ellipse at 20% 80%, var(--cream) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 25%, var(--wash-coral), transparent 55%),
    var(--sky);
}
.hero {
  min-height: 800px;
  height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      to right,
      var(--line) 0 1px,
      transparent 1px 33.333%
    ),
    repeating-linear-gradient(
      to bottom,
      var(--line) 0 1px,
      transparent 1px 33.333%
    );
  visibility: hidden;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 100px 20px 50px;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.hero h1 {
  font-size: clamp(80px, 10.7vw, 154px);
  letter-spacing: -7px;
  line-height: 0.97;
  margin: 26px 0 28px;
}
.hero h1 em {
  font-style: italic;
}
.hero-content p {
  max-width: 400px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 auto 26px;
}
.hero-settled {
  opacity: 1;
}
.hero-caption {
  position: absolute;
  z-index: 3;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 1;
}
.caption-one {
  top: 25%;
  left: 13%;
}
.caption-one span {
  margin-left: 22px;
}
.caption-two {
  right: 11%;
  bottom: 29%;
}
.caption-two i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  margin-right: 8px;
}
.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: 1.4px;
}
.hero-bottom a {
  font-size: 25px;
}
.proof {
  text-align: center;
  padding: 60px 0 50px;
}
.logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
  margin: 30px 0;
  font-size: 30px;
  letter-spacing: -1.3px;
  font-weight: 600;
}
.logos .serif {
  font-family: var(--font-display);
  font-weight: 500;
}
.tiny {
  font-size: 12px;
}
.placeholder-note {
  font-size: 9px;
  color: var(--ink-soft);
}
.testimonials {
  padding: 25px 0 90px;
}
.slide-count {
  font-size: 10px;
}
.carousel-shell {
  position: relative;
}
.carousel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease-pull);
}
.quote-card {
  flex: 0 0 92%;
  padding: 45px 50px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  border-radius: var(--radius-lg);
}
.coral {
  background: var(--wash-coral);
}
.mint {
  background: var(--wash-mint);
}
.lilac {
  background: var(--wash-lilac);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 65px;
  line-height: 0.8;
}
.quote-card blockquote {
  font-size: clamp(24px, 3vw, 39px);
  margin: 12px 0 28px;
  letter-spacing: -1px;
}
.quote-card p {
  font-size: 10px;
}
.quote-card p span,
.quote-card small {
  color: var(--ink-soft);
}
.quote-card small {
  font-size: 8px;
}
.quote-art {
  position: relative;
  display: grid;
  place-items: center;
}
.quote-art img {
  position: absolute;
  inset: 0;
  object-fit: contain;
}
.orbit-art {
  font-size: 210px;
  line-height: 1;
  transform: rotate(-15deg);
  color: var(--accent-coral);
}
.round {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 20px;
  display: grid;
  place-items: center;
}
.previous,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.previous {
  left: -21px;
}
.next {
  right: -21px;
}
.story {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0;
}
.story .section-top {
  color: var(--accent-teal);
}
.story h2 {
  max-width: 700px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-top: 50px;
}
.story-list {
  position: sticky;
  top: 110px;
}
.story-step {
  display: flex;
  gap: 24px;
  padding: 45px 0;
  min-height: 210px;
  border-top: 1px solid var(--navy-line);
  opacity: 0.42;
  transition: opacity 0.4s;
}
.story-step.active {
  opacity: 1;
}
.story-step > span {
  font-size: 12px;
  color: var(--accent-teal);
  padding-top: 4px;
}
.story-step h3 {
  font-size: 28px;
}
.story-step p {
  font-size: 12px;
  max-width: 300px;
  margin-top: 14px;
  opacity: 0.7;
}
.diagram-stage {
  position: sticky;
  top: 130px;
  height: 470px;
  background: var(--navy-deep);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diagram {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.4s,
    transform 0.4s;
  padding: 30px;
}
.diagram.active {
  opacity: 1;
  transform: scale(1);
}
.diagram-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--accent-teal);
}
.diagram-fallback {
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.node {
  border: 1px solid var(--navy-line);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 11px;
}
.node-row {
  display: flex;
  gap: 10px;
}
.connector {
  color: var(--accent-teal);
  font-size: 28px;
  margin: 8px;
}
.bright {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  box-shadow: 0 0 30px var(--navy-line);
}
.diagram img {
  position: absolute;
  inset: 50px 20px 20px;
  width: calc(100% - 40px);
  height: calc(100% - 70px);
  object-fit: contain;
}
.features,
.website,
.trust,
.work {
  padding-top: 100px;
  padding-bottom: 100px;
}
.features h2 {
  margin-bottom: 45px;
}
.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-tabs button {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 23px 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.feature-tabs button > span:first-child {
  display: block;
  font-size: 9px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.feature-tabs button[aria-selected="true"] {
  background: var(--wash-coral);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.feature-tabs button:nth-child(2)[aria-selected="true"] {
  background: var(--wash-mint);
}
.feature-tabs button:nth-child(3)[aria-selected="true"] {
  background: var(--wash-lilac);
}
.tab-progress {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.feature-panel {
  min-height: 430px;
  padding: 55px 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
[hidden] {
  display: none !important;
}
.feature-panel h3 {
  font-size: 48px;
  letter-spacing: -2px;
  margin: 22px 0;
}
.feature-panel p {
  font-size: 12px;
  max-width: 320px;
  color: var(--ink-soft);
}
.text-link {
  display: inline-block;
  margin-top: 25px;
  font-size: 11px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.mockup {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}
.mockup > img {
  position: absolute;
  inset: 0;
  object-fit: contain;
}
.phone {
  background: var(--cream);
  width: 190px;
  height: 300px;
  border: 6px solid var(--ink);
  border-radius: 27px;
  transform: rotate(-9deg);
  padding: 18px;
  box-shadow: 18px 20px 0 var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.phone > span {
  font-size: 8px;
}
.phone strong {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.phone-shape {
  font-size: 100px;
  line-height: 1;
  color: var(--accent-coral);
}
.website {
  border-top: 1px solid var(--line);
}
.website > p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 13px;
  margin: 25px 0 40px;
}
.comparison {
  --split: 50%;
  position: relative;
  height: 470px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.site-preview {
  position: absolute;
  inset: 0;
  background: var(--cream-deep);
}
.site-preview > img {
  position: absolute;
  inset: 0;
}
.browser-bar {
  height: 38px;
  border-bottom: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 8px;
  letter-spacing: 2px;
}
.browser-bar span {
  position: absolute;
  left: 40%;
  letter-spacing: 0;
}
.before-content,
.after-content {
  padding: 35px 50px;
}
.before-content > span,
.after-content > span {
  font-size: 10px;
}
.before-content h3 {
  font-family: var(--font-body);
  font-size: 42px;
  line-height: 1.25;
  margin: 40px 0 25px;
  color: var(--ink-soft);
}
.fake-button {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 12px 20px;
}
.after {
  background: var(--wash-mint);
  clip-path: inset(0 0 0 var(--split));
}
.after-content h3 {
  font-size: 75px;
  letter-spacing: -4px;
  margin: 25px 0;
}
.preview-flower {
  position: absolute;
  right: 8%;
  top: 100px;
  font-size: 220px !important;
  color: var(--ink);
}
.compare-label {
  position: absolute;
  bottom: 18px;
  padding: 5px 13px;
  background: var(--cream);
  border-radius: 20px;
  font-size: 10px;
}
.label-before {
  left: 20px;
}
.label-after {
  right: 20px;
}
.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: var(--ink);
  pointer-events: none;
}
.divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 24px;
}
.comparison input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}
.comparison:focus-within {
  outline: 3px solid var(--accent-coral);
  outline-offset: 5px;
}
.comparison-hint {
  display: block;
  text-align: center;
  font-size: 9px;
  margin-top: 15px;
  color: var(--ink-soft);
}
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 10px;
}
.trust h2 {
  margin: 25px 0 35px;
}
.trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.trust .pill {
  font-size: 8px;
  min-width: 95px;
  text-align: center;
}
.control {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  min-height: 410px;
  overflow: hidden;
  align-self: center;
}
.control > img {
  position: absolute;
  inset: 0;
  object-fit: contain;
}
.control-fallback {
  padding: 30px;
}
.control .section-top {
  font-size: 9px;
}
.status {
  color: var(--accent-teal);
}
.control h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
.control-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid var(--navy-line);
  font-size: 10px;
}
.mini-posts {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.mini-posts span {
  background: var(--wash-coral);
  color: var(--ink);
  border-radius: 8px;
  width: 70px;
  height: 65px;
  display: grid;
  place-items: center;
  font-size: 35px;
}
.mini-posts span:nth-child(2) {
  background: var(--wash-mint);
}
.mini-posts span:nth-child(3) {
  background: var(--wash-lilac);
}
.credibility {
  background: var(--navy-deep);
  color: var(--cream);
  text-align: center;
  padding: 50px 0 30px;
}
.credibility p {
  font-size: 12px;
}
.credibility .logos {
  opacity: 0.65;
}
.stat {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.stat > img {
  position: absolute;
  inset: 0;
}
.stat > div {
  position: relative;
  padding: 60px 20px;
}
.stat h2 {
  font-size: clamp(100px, 14vw, 190px);
  letter-spacing: -8px;
  line-height: 1.1;
}
.stat h2 span {
  font-style: italic;
  font-size: 0.7em;
}
.stat p {
  font-size: 14px;
}
.stat small {
  display: block;
  font-size: 8px;
  color: var(--ink-soft);
}
.avatars {
  display: flex;
  justify-content: center;
  margin: 25px 0 10px;
}
.avatars span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--wash-coral);
  border: 2px solid var(--cream);
  border-radius: 50%;
  font-size: 9px;
  margin-left: -5px;
}
.avatars span:nth-child(2) {
  background: var(--wash-mint);
}
.avatars span:nth-child(3) {
  background: var(--wash-lilac);
}
.work-row {
  display: grid;
  grid-template-columns: 35px 1fr auto 25px;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.work-number {
  font-size: 9px;
  color: var(--ink-soft);
}
.work-row h3 {
  font-size: 29px;
  letter-spacing: -0.8px;
}
.work-row .pill {
  margin-left: 7px;
}
.work-arrow {
  font-size: 25px;
  transition: transform 150ms ease;
}
.work-row:hover .work-arrow {
  transform: translateX(6px);
}
.closing {
  text-align: center;
  padding: 55px 20px 110px;
}
.closing h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(60px, 7.5vw, 104px);
  margin: 25px 0 35px;
  letter-spacing: -4px;
}
.closing > .eyebrow {
  display: block;
}
.closing-star {
  position: absolute;
  font-size: 70px;
  color: var(--accent-coral);
  right: -90px;
  top: 50px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.closing > p {
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 25px;
}
.footer {
  background: var(--navy);
  color: var(--cream);
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
}
.footer p {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 20px;
}
.footer h3 {
  font-family: var(--font-body);
  font-size: 10px;
  margin-bottom: 22px;
}
.footer-grid > div > a:not(.brand),
.footer-grid > div > button {
  display: block;
  font-size: 10px;
  opacity: 0.65;
  margin: 12px 0;
  background: transparent;
  padding: 0;
}
.socials {
  display: flex;
  gap: 16px;
  margin-top: 25px;
}
.socials button {
  background: none;
  padding: 0;
  color: var(--cream);
}
.socials svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
}
.footer-bottom {
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding: 23px 0;
  font-size: 9px;
  color: var(--cream);
}
.footer-sky {
  height: 75px;
}
.footer-sky img {
  object-position: center 75%;
}
.reveal {
  opacity: 1;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-pull),
    transform 0.7s var(--ease-pull);
}
.js-motion .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
dialog {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  padding: 45px;
  max-width: 520px;
  width: calc(100% - 40px);
}
dialog::backdrop {
  background: var(--line);
  backdrop-filter: blur(7px);
}
dialog h2 {
  font-size: 40px;
  margin: 25px 0 20px;
}
dialog p {
  color: var(--ink-soft);
  margin-bottom: 25px;
}
.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
}
@keyframes settle {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1500px) {
  .hero {
    max-height: 1100px;
  }
}
@media (max-width: 1000px) {
  .nav {
    gap: 35px;
  }
  .nav-center,
  .nav-actions {
    gap: 18px;
  }
  .wrap {
    width: calc(100% - 56px);
  }
  .story-grid {
    gap: 35px;
  }
  .feature-panel {
    padding: 40px;
  }
  .trust {
    gap: 35px;
  }
  .quote-card {
    padding: 35px;
  }
  .orbit-art {
    font-size: 150px;
  }
  .work-row {
    gap: 15px;
  }
  .work-row .pill {
    font-size: 8px;
  }
  .closing-star {
    right: -65px;
    font-size: 50px;
  }
}
@media (max-width: 719px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 74px;
    justify-content: space-between;
  }
  .brand {
    font-size: 23px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: transparent;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--ink);
  }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    animation: settle 0.2s both;
  }
  .nav-center,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links a {
    padding: 13px;
    font-size: 14px;
  }
  .nav-actions .button {
    margin-top: 10px;
  }
  .hero {
    height: 100svh;
    min-height: 700px;
  }
  .hero-content {
    padding-top: 90px;
  }
  .hero h1 {
    font-size: clamp(64px, 12.5vw, 90px);
    letter-spacing: -4px;
    margin: 25px 0;
  }
  .hero-content > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero-content p {
    max-width: 300px;
    font-size: 12px;
  }
  .caption-one {
    left: 7%;
    top: 21%;
    font-size: 7px;
  }
  .caption-two {
    right: 7%;
    bottom: 20%;
    font-size: 7px;
  }
  .hero-bottom {
    left: 20px;
    right: 20px;
    bottom: 25px;
    font-size: 6px;
    letter-spacing: 0.6px;
  }
  .proof {
    padding: 45px 0 35px;
  }
  .logos {
    gap: 15px;
    flex-wrap: wrap;
    font-size: 23px;
    margin: 25px 0;
  }
  .placeholder-note {
    font-size: 8px;
  }
  .testimonials {
    padding-bottom: 60px;
  }
  .section-top {
    gap: 15px;
  }
  .section-top .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .quote-card {
    flex-basis: 94%;
    padding: 30px 25px;
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 420px;
  }
  .quote-card blockquote {
    font-size: 29px;
  }
  .quote-art {
    height: 90px;
    justify-items: end;
  }
  .orbit-art {
    font-size: 100px;
  }
  .quote-art img {
    object-position: right;
  }
  .round {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }
  .previous {
    left: -13px;
  }
  .next {
    right: -13px;
  }
  .story {
    padding: 60px 0;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
  }
  .story-list {
    position: relative;
    top: auto;
  }
  .story-step {
    min-height: 150px;
    padding: 25px 0;
    gap: 20px;
  }
  .story-step h3 {
    font-size: 26px;
  }
  .diagram-stage {
    position: relative;
    top: auto;
    height: 360px;
  }
  .features,
  .website,
  .work {
    padding: 65px 0;
  }
  .features h2 {
    margin-bottom: 30px;
  }
  .feature-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .feature-tabs button {
    padding: 16px 12px;
    font-size: 12px;
  }
  .feature-tabs button[aria-selected="true"] {
    border-radius: var(--radius-md);
  }
  .feature-panel {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    gap: 25px;
    border-radius: var(--radius-md);
    margin-top: 10px;
  }
  .feature-panel h3 {
    font-size: 40px;
  }
  .mockup {
    min-height: 310px;
  }
  .website h2 {
    font-size: 42px;
  }
  .website .section-top .pill {
    font-size: 8px;
  }
  .comparison {
    height: 340px;
  }
  .before-content,
  .after-content {
    padding: 25px;
  }
  .before-content h3 {
    font-size: 28px;
  }
  .after-content h3 {
    font-size: 52px;
    margin: 35px 0;
  }
  .preview-flower {
    font-size: 110px !important;
    right: 5%;
    top: 120px;
  }
  .fake-button {
    font-size: 8px !important;
    padding: 8px;
  }
  .browser-bar span {
    left: 30%;
  }
  .trust {
    grid-template-columns: 1fr;
    padding: 0 0 65px;
    gap: 35px;
  }
  .trust li {
    font-size: 10px;
  }
  .control {
    min-height: 390px;
  }
  .credibility {
    padding: 35px 0 20px;
  }
  .credibility p {
    font-size: 11px;
  }
  .stat {
    min-height: 390px;
  }
  .stat h2 {
    letter-spacing: -5px;
  }
  .work .section-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .work-row {
    grid-template-columns: 20px 1fr 20px;
    gap: 10px;
    padding: 22px 0;
  }
  .work-row h3 {
    font-size: 26px;
  }
  .work-row > div {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .work-row .pill {
    margin: 0;
  }
  .work-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .closing {
    padding: 30px 20px 70px;
  }
  .closing h2 {
    font-size: 59px;
    letter-spacing: -3px;
  }
  .closing-star {
    display: none;
  }
  .cta-buttons .button {
    gap: 10px;
    padding: 14px 20px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 20px;
  }
  .footer-sky {
    height: 50px;
  }
  h2 {
    letter-spacing: -1.6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-mask {
    mask-image: none;
    -webkit-mask-image: none;
    background: transparent;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
}

/* One mount-only 3.4s sequence. The even-odd polygon cuts a rectangular hole
   out of the cream/grid layer; the underlying photo never scales or moves. */
.hero-headline {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 170px);
  letter-spacing: -0.06em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 14px;
}
.hero-word-first,
.hero-word-second {
  display: inline-block;
}
.hero-caption {
  opacity: 0.5;
}
.hero-sequence .hero-mask {
  visibility: visible;
  animation: hero-window 1.9s linear both;
}
.hero-sequence .hero-photo {
  animation: hero-photo-show 0.2s 0.3s linear both;
}
.hero-sequence .hero-headline {
  visibility: visible;
  animation: hero-wordmark 1.9s linear both;
}
.hero-sequence .header {
  animation: hero-enter 0.4s 2s var(--ease-pull) both;
}
.hero-sequence .hero-badge {
  animation: hero-enter 0.3s 2.4s var(--ease-pull) both;
}
.hero-sequence .hero-word-first {
  animation: hero-enter 0.3s 2.45s var(--ease-pull) both;
}
.hero-sequence .hero-word-second {
  animation: hero-enter 0.3s 2.7s var(--ease-pull) both;
}
.hero-sequence .hero-subcopy,
.hero-sequence .hero-cta,
.hero-sequence .hero-bottom {
  animation: hero-enter 0.4s 3s var(--ease-pull) both;
}
@keyframes hero-window {
  0%,
  15.789% {
    clip-path: polygon(
      evenodd,
      0 0,
      100% 0,
      100% 100%,
      0 100%,
      0 0,
      50% 50%,
      50% 50%,
      50% 50%,
      50% 50%,
      50% 50%
    );
    animation-timing-function: var(--ease-pull);
  }
  26.316%,
  89.474% {
    clip-path: polygon(
      evenodd,
      0 0,
      100% 0,
      100% 100%,
      0 100%,
      0 0,
      33.333% 33.333%,
      66.667% 33.333%,
      66.667% 66.667%,
      33.333% 66.667%,
      33.333% 33.333%
    );
    animation-timing-function: var(--ease-pull);
  }
  100% {
    clip-path: polygon(
      evenodd,
      0 0,
      100% 0,
      100% 100%,
      0 100%,
      0 0,
      0 0,
      100% 0,
      100% 100%,
      0 100%,
      0 0
    );
    visibility: hidden;
  }
}
@keyframes hero-wordmark {
  0%,
  15.789% {
    opacity: 0;
  }
  26.316%,
  89.474% {
    opacity: 1;
    animation-timing-function: var(--ease-pull);
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes hero-photo-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-enter {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sequence .hero-mask,
  .hero-sequence .hero-headline {
    display: none;
  }
  .hero-sequence .hero-photo,
  .hero-sequence .header,
  .hero-sequence .hero-badge,
  .hero-sequence .hero-word-first,
  .hero-sequence .hero-word-second,
  .hero-sequence .hero-subcopy,
  .hero-sequence .hero-cta,
  .hero-sequence .hero-bottom {
    animation: none;
    opacity: 1;
    visibility: visible;
  }
}

/* Plane and trail share the photo's reveal window, beneath all copy. */
.hero {
  overflow: hidden;
}
.hero-flight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-plane {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(125px, 16vw, 230px);
  height: auto;
  transform: translate(55vw, 360px) translate(-50%, -50%);
  filter: drop-shadow(0 12px 15px var(--line));
  will-change: transform;
}
.hero-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: url(#flight-gradient);
  stroke-linecap: round;
  pointer-events: none;
}
.trail-haze {
  stroke-width: 22;
  filter: blur(10px);
  opacity: 0.4;
}
.trail-line {
  stroke-width: 1.3;
  opacity: 0.75;
}
.trail-sparks {
  stroke-width: 3;
  stroke-dasharray: 1 19 1 31;
  opacity: 0.9;
}
.hero-sequence .hero-flight {
  animation: hero-photo-show 0.6s 1.1s linear both;
}
.hero h1 {
  font-size: clamp(64px, 8.4vw, 120px);
}
.hero-word-first {
  transform: translateX(-9%);
}
.hero-word-second {
  margin-top: 90px;
  transform: translateX(10%);
}
/* Dedicated arrow row leaves the full card and its next-slide peek unobstructed. */
.carousel-shell {
  padding-bottom: 62px;
}
.carousel-shell .previous,
.carousel-shell .next {
  top: auto;
  bottom: 0;
  transform: none;
  width: 42px;
  height: 42px;
}
.carousel-shell .previous {
  left: auto;
  right: 54px;
}
.carousel-shell .next {
  right: 0;
}
/* Replace the cool-blue bitmap with a palette-matched, readable workspace. */
.control-themed {
  background: var(--cream-deep);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 440px;
  transform: rotate(-2deg);
}
.control-themed .control-fallback {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 10px 14px 0 var(--wash-coral);
}
.control-themed .section-top {
  font-size: 9px;
  gap: 10px;
}
.control-themed .status {
  color: var(--ink);
  background: var(--wash-mint);
  padding: 3px 8px;
  border-radius: 20px;
}
.control-themed h3 {
  font-size: 35px;
  letter-spacing: -1px;
}
.control-themed .control-row {
  border-color: var(--line);
  align-items: center;
  gap: 10px;
}
.control-themed .mini-posts {
  gap: 12px;
  margin-top: 22px;
}
.control-themed .mini-posts span {
  flex: 1;
  height: 80px;
  border: 1px solid var(--line);
}
@media (max-width: 719px) {
  .hero-word-second {
    margin-top: 72px;
  }
  .hero h1 {
    font-size: clamp(50px, 11.6vw, 80px);
  }
  .hero-word-first {
    transform: translateX(-3%);
  }
  .hero-word-second {
    transform: translateX(4%);
  }
  .control-themed {
    padding: 17px;
    transform: none;
    min-height: 410px;
  }
  .control-themed .control-fallback {
    padding: 20px;
  }
  .control-themed h3 {
    font-size: 30px;
  }
  .carousel-shell {
    padding-bottom: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-plane {
    will-change: auto;
  }
  .hero-trail {
    display: none;
  }
  .hero-sequence .hero-flight {
    animation: none;
    opacity: 1;
  }
}

/* Reserve the headline's original space while both phrases join the same baseline. */
.hero h1 {
  position: relative;
}
.hero-word-first,
.hero-word-second {
  transform-origin: top left;
  will-change: transform;
  white-space: nowrap;
}
.story {
  background: var(--cream-deep);
  color: var(--ink);
}
.story .section-top {
  color: var(--ink-soft);
}
.story h2 {
  max-width: 850px;
}
.story-intro {
  max-width: 650px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.process-art {
  aspect-ratio: 3/2;
  background: var(--cream);
  overflow: hidden;
}
.process-art img {
  object-fit: cover;
}
.process-copy {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.process-copy .eyebrow {
  font-size: 9px;
  letter-spacing: 1.1px;
}
.process-copy h3 {
  font-size: 32px;
  letter-spacing: -1px;
  margin: 18px 0;
}
.process-copy p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.process-result {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: auto;
  font-size: 10px;
  font-weight: 500;
}
.story-addon {
  margin-top: 35px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
.story-addon p {
  font-size: 12px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-top: 10px;
}
.story-addon .button {
  flex-shrink: 0;
  font-size: 10px;
}
@media (max-width: 900px) {
  .process-cards {
    gap: 14px;
  }
  .process-copy {
    padding: 24px 18px;
  }
  .process-copy h3 {
    font-size: 27px;
  }
}
@media (max-width: 719px) {
  .process-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .process-art {
    aspect-ratio: 3/2;
  }
  .process-copy {
    padding: 28px;
  }
  .process-copy h3 {
    font-size: 32px;
  }
  .story-intro {
    font-size: 13px;
  }
  .story-addon {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-word-first,
  .hero-word-second {
    will-change: auto;
  }
}

/* Pin through alignment, then hold the completed headline before releasing the hero. */
.hero-scroll {
  position: relative;
  height: 180svh;
  min-height: 1440px;
}
.hero-scroll .hero {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 0;
  max-height: none;
}
.hero-scroll .hero-content {
  width: 100%;
  padding-top: 105px;
  padding-bottom: 55px;
}
.hero-scroll .hero h1 {
  font-size: clamp(54px, 8vw, 112px);
}
.services-lead {
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 35px);
  line-height: 1.3;
  max-width: 750px;
  margin-top: 24px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -1px;
  max-width: 440px;
  margin: 20px 0;
}
.service-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 26px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.campaign-art {
  aspect-ratio: 3/2;
  min-height: 0;
  align-self: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
}
.campaign-art .phone {
  display: none;
}
.campaign-art > img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 719px) {
  .hero-scroll {
    height: 180svh;
    min-height: 0;
  }
  .hero-scroll .hero h1 {
    font-size: clamp(45px, 11vw, 75px);
  }
  .hero-scroll .hero-content {
    padding: 95px 20px 45px;
  }
  .hero-word-second {
    margin-top: 55px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px;
  }
  .campaign-art {
    width: 100%;
  }
}
@media (max-height: 700px) {
  .hero-scroll .hero h1 {
    font-size: clamp(42px, 7vw, 78px);
    margin: 15px 0;
  }
  .hero-scroll .hero-word-second {
    margin-top: 40px;
  }
  .hero-scroll .hero-content p {
    margin-bottom: 16px;
  }
  .hero-scroll .hero-content {
    padding-top: 90px;
    padding-bottom: 45px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll {
    height: auto;
    min-height: 0;
  }
  .hero-scroll .hero {
    position: relative;
    min-height: 700px;
  }
}

.hero-scroll .hero h1 {
  font-size: clamp(32px, 5.2vw, 76px);
  letter-spacing: -2.5px;
}
.hero-scroll .hero-content p {
  max-width: 550px;
}
.service-image {
  width: calc(100% + 76px);
  max-width: none;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin: -38px -38px 30px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
#demo-dialog {
  max-width: 620px;
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  padding: 36px;
}
.demo-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
}
#demo-dialog h2 {
  font-size: 38px;
  margin: 20px 0 12px;
}
#demo-intro {
  font-size: 13px;
  margin-bottom: 24px;
}
#demo-form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}
#demo-form input:not([type="checkbox"]),
#demo-form select,
#demo-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  color: var(--ink);
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
  min-width: 0;
}
#demo-form textarea {
  resize: vertical;
}
#demo-form :is(input, select, textarea):focus-visible {
  outline: 2px solid var(--accent-coral);
  outline-offset: 2px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.optional {
  font-weight: 400;
  color: var(--ink-soft);
}
#demo-form .form-consent {
  display: flex;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  align-items: flex-start;
}
.form-consent input {
  margin-top: 3px;
  accent-color: var(--ink);
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#demo-form .form-status {
  font-size: 12px;
  margin: 12px 0;
  color: var(--ink);
}
#demo-form .form-alternative {
  font-size: 10px;
  margin: 17px 0 0;
}
.form-alternative a {
  text-decoration: underline;
}
#demo-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
@media (max-width: 719px) {
  .hero-scroll .hero h1 {
    font-size: clamp(24px, 5.5vw, 39px);
    letter-spacing: -1px;
  }
  .service-image {
    width: calc(100% + 56px);
    margin: -28px -28px 25px;
  }
  #demo-dialog {
    padding: 28px 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #demo-dialog h2 {
    font-size: 32px;
  }
}

/* Center both phrases independently; never combine this longer headline into one row. */
.hero-scroll .hero-content {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 28px;
}
.hero-scroll .hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  line-height: 1.08;
  font-size: clamp(30px, 5vw, 72px);
  letter-spacing: -2px;
  margin: 26px 0 24px;
}
.hero-scroll .hero h1 br {
  display: none;
}
.hero-scroll .hero-word-first,
.hero-scroll .hero-word-second {
  display: block;
  margin: 0;
  transform: none;
  transform-origin: center;
  white-space: nowrap;
}
.hero-scroll .hero-content p {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.8;
  text-wrap: pretty;
  margin: 0 auto 26px;
  color: var(--ink);
}
.hero-scroll .hero-badge {
  font-size: 9px;
  letter-spacing: 1.6px;
}
.hero-scroll .hero-plane {
  width: clamp(125px, 15vw, 210px);
}
@media (max-width: 719px) {
  .hero-scroll .hero-content {
    padding-inline: 20px;
  }
  .hero-scroll .hero h1 {
    font-size: clamp(24px, 5.3vw, 38px);
    letter-spacing: -0.8px;
    gap: 100px;
    margin: 24px 0 20px;
  }
  .hero-scroll .hero-content p {
    max-width: 360px;
    font-size: 12px;
    line-height: 1.75;
  }
  .hero-scroll .hero-badge {
    font-size: 7px;
    letter-spacing: 1px;
  }
}
@media (max-height: 700px) and (min-width: 720px) {
  .hero-scroll .hero h1 {
    font-size: clamp(30px, 4.3vw, 60px);
    gap: 120px;
    margin: 18px 0;
  }
  .hero-scroll .hero-plane {
    width: 170px;
  }
  .hero-scroll .hero-content p {
    font-size: 12px;
    max-width: 550px;
    line-height: 1.65;
    margin-bottom: 18px;
  }
}

/* Compact cards retain the artwork’s native 3:2 proportions. */
#services .service-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:28px}
#services .service-card{padding:20px;border-radius:var(--radius-md);overflow:hidden}
#services .service-image{width:calc(100% + 40px);height:auto;aspect-ratio:3/2;object-fit:cover;background:var(--cream);margin:-20px -20px 16px;border-radius:0}
#services .service-card h3{font-size:23px;line-height:1.12;letter-spacing:-.6px;margin:10px 0 12px}
#services .service-card p{font-size:12px;line-height:1.65;margin-bottom:16px}
#services .service-tags{gap:6px}
#services .service-tags .pill{font-size:9px;padding:3px 9px}
@media(max-width:1099px){#services .service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:599px){#services .service-grid{grid-template-columns:1fr;gap:14px}#services .service-card{padding:18px}#services .service-image{width:calc(100% + 36px);height:auto;aspect-ratio:3/2;margin:-18px -18px 14px}#services .service-card h3{font-size:23px}}
/* Use the generated mark in the footer lockup as well as the header. */
.footer .brand{font-size:0;gap:10px}
.footer .brand::before{content:"";display:block;width:36px;height:36px;border-radius:11px;background:var(--cream) url("assets/cadence-logo.png") center/contain no-repeat}
.footer .brand::after{content:"Cadence®";font-size:25px;letter-spacing:-1.3px}
.button[data-cal-link]{background:var(--accent-coral);color:var(--ink);border:1px solid transparent;box-shadow:0 8px 18px rgba(42,45,56,.08)}
.button[data-cal-link]:hover{background:var(--ink);color:var(--cream);box-shadow:none}
.nav-actions a[data-cal-link]{transition:opacity 150ms ease,transform 150ms ease}
.nav-actions a[data-cal-link]:hover{opacity:.7;transform:translateY(-1px)}
