:root {
  --ink: #172033;
  --ink-deep: #0d1424;
  --blue: #5868e8;
  --cyan: #32c7c4;
  --pink: #e065a4;
  --coral: #f38a72;
  --cream: #f6f7f5;
  --paper: #fcfcfb;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(23, 32, 51, 0.13);
  --shadow: 0 24px 68px rgba(13, 20, 36, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: rgba(50, 199, 196, .28); color: var(--ink-deep); }
a { color: inherit; }
button, input { font: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 22px 0;
  color: var(--white);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; text-decoration: none; }
.brand-mark {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 15px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.brand-mark::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 28px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 6px;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.brand-mark span {
  position: absolute;
  left: 15px;
  top: 9px;
  width: 10px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}
.brand-name { white-space: nowrap; font-weight: 800; letter-spacing: -.03em; }
.brand-name span { color: #78e5e0; }
.header-cta {
  flex: 0 0 auto;
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 780;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  transition: .2s ease;
}
.header-cta:hover, .header-cta:focus-visible { background: var(--white); color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 140px 0 78px;
  color: var(--white);
  background: var(--ink-deep) url("../images/hero-poster-v2.jpg") center center / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,10,22,.84) 0%, rgba(10,17,31,.66) 45%, rgba(16,22,36,.42) 100%),
    linear-gradient(180deg, rgba(5,9,18,.24) 0%, rgba(5,9,18,.02) 48%, rgba(5,9,18,.42) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: -8%;
  right: -8%;
  bottom: -106px;
  height: 165px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(355px, .76fr);
  align-items: center;
  gap: clamp(48px, 7vw, 98px);
}
.hero-copy { padding-bottom: 12px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #82e5e1;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 27px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--blue); }
.hero h1, .section-heading h2, .market-copy h2, .language-grid h2, .faq-intro h2, .final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -.038em;
}
.hero h1 { max-width: 735px; font-size: clamp(3rem, 5.4vw, 5.45rem); }
.domain-display {
  display: inline-block;
  margin: 25px 0 16px;
  padding: 6px 0 7px;
  border-bottom: 1px solid rgba(255,255,255,.36);
  color: #86e6e3;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-intro { max-width: 690px; margin: 0; color: rgba(255,255,255,.81); font-size: clamp(1rem, 1.5vw, 1.14rem); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 28px; }
.hero-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.86); background: rgba(255,255,255,.07); font-size: .81rem; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--white); text-decoration: none; font-weight: 760; }
.text-link span { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.flash { position: absolute; z-index: 2; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.flash-one { width: 270px; height: 270px; right: -90px; top: 14%; background: radial-gradient(circle, rgba(50,199,196,.22), transparent 67%); }
.flash-two { width: 220px; height: 220px; left: -90px; bottom: 3%; background: radial-gradient(circle, rgba(224,101,164,.2), transparent 67%); }

.purchase-card {
  position: relative;
  padding: clamp(28px, 3.6vw, 39px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.965);
  color: var(--ink);
  box-shadow: 0 30px 82px rgba(4, 8, 18, .34);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.card-glow { position: absolute; width: 190px; height: 190px; right: -75px; top: -75px; border-radius: 50%; background: radial-gradient(circle, rgba(50,199,196,.33), transparent 68%); pointer-events: none; }
.card-kicker { margin: 0 0 8px; color: var(--blue); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.purchase-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(.94rem, 1.58vw, 1.33rem);
  line-height: 1.15;
  letter-spacing: -.04em;
}
.price { display: flex; align-items: flex-start; margin: 18px 0 5px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.65rem, 5.8vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.price span { padding-top: 7px; margin-right: 4px; color: var(--cyan); font-family: inherit; font-size: .45em; }
.price-note { margin: 0 0 22px; color: var(--muted); font-size: .89rem; }
.purchase-actions { display: grid; gap: 10px; }
.purchase-actions form { margin: 0; }
.button {
  width: 100%;
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(50,199,196,.32); outline-offset: 3px; }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 24px rgba(23,32,51,.2); }
.button-primary:hover { background: var(--blue); }
.button-secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: rgba(23,32,51,.28); background: var(--cream); }
.tracking-pixel { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.secure-note { display: flex; align-items: center; gap: 12px; margin-top: 19px; padding: 14px 0 0; border-top: 1px solid var(--line); }
.secure-note p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.44; }
.secure-note strong { color: var(--ink); }
.lock { position: relative; flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: rgba(50,199,196,.11); }
.lock::before { content: ""; position: absolute; left: 11px; top: 14px; width: 10px; height: 9px; border-radius: 2px; background: var(--blue); }
.lock::after { content: ""; position: absolute; left: 13px; top: 8px; width: 6px; height: 8px; border: 2px solid var(--blue); border-bottom: 0; border-radius: 6px 6px 0 0; }
.disclaimer { margin: 11px 0 0; color: #8790a1; font-size: .7rem; text-align: center; }

.section { padding: 68px 0; }
.section-heading { max-width: 720px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .market-copy h2, .language-grid h2, .faq-intro h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.section-heading > p:last-child, .market-copy > p, .language-grid > div > p, .faq-intro > p { color: var(--muted); font-size: 1rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.benefit-card { position: relative; min-height: 246px; padding: 23px 21px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(13,20,36,.08); }
.card-number { position: absolute; right: 18px; top: 15px; color: #d8dce3; font-family: Georgia, serif; font-size: 1.35rem; }
.benefit-icon { position: relative; width: 50px; height: 50px; margin-bottom: 23px; border-radius: 15px; background: rgba(88,104,232,.08); }
.benefit-card h3 { margin: 0 0 8px; font-size: 1.12rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.pin-icon::before { content: ""; position: absolute; left: 17px; top: 11px; width: 15px; height: 20px; border: 3px solid var(--blue); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.pin-icon::after { content: ""; position: absolute; left: 22px; top: 16px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.camera-icon::before { content: ""; position: absolute; left: 10px; top: 15px; width: 30px; height: 21px; border: 3px solid var(--cyan); border-radius: 5px; }
.camera-icon::after { content: ""; position: absolute; left: 20px; top: 20px; width: 9px; height: 9px; border: 2px solid var(--cyan); border-radius: 50%; }
.memory-icon::before { content: "◎"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--pink); font-size: 30px; }
.route-icon::before { content: "↗"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--blue); font-size: 27px; font-weight: 800; }

.market-section { background: var(--cream); }
.market-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(44px, 7vw, 88px); }
.market-copy > p { max-width: 600px; }
.use-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 21px; }
.use-list span { padding: 8px 12px; border: 1px solid rgba(23,32,51,.1); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--ink); font-size: .81rem; }
.photo-strip-stage { position: relative; min-height: 385px; }
.photo-strip-stage::before { content: ""; position: absolute; inset: 7% 6%; border-radius: 50%; background: radial-gradient(circle, rgba(50,199,196,.23), rgba(88,104,232,.11) 46%, transparent 70%); }
.brand-card { position: absolute; inset: 52px 74px 44px 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(23,32,51,.1); border-radius: 28px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); text-align: center; transform: rotate(-2deg); }
.mini-camera { position: relative; width: 74px; height: 58px; border: 2px solid var(--blue); border-radius: 16px; }
.mini-camera::before { content: ""; position: absolute; left: 21px; top: 16px; width: 27px; height: 27px; border: 3px solid var(--cyan); border-radius: 50%; }
.mini-camera::after { content: ""; position: absolute; left: 15px; top: -9px; width: 24px; height: 9px; border: 2px solid var(--blue); border-bottom: 0; border-radius: 6px 6px 0 0; }
.mini-camera span { position: absolute; right: 10px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); }
.brand-card p { margin: 18px 0 2px; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.brand-card > span { color: var(--muted); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.photo-strip { position: absolute; z-index: 2; width: 112px; padding: 8px 8px 11px; background: var(--white); box-shadow: 0 18px 40px rgba(13,20,36,.18); }
.photo-strip span { display: block; height: 70px; margin-bottom: 7px; background: linear-gradient(135deg, #253149, #5a67e7 55%, #32c7c4); }
.photo-strip span:nth-child(2) { background: linear-gradient(135deg, #e065a4, #f38a72 56%, #fedb8c); }
.photo-strip span:nth-child(3) { background: linear-gradient(135deg, #15233b, #32c7c4 58%, #f8f9fb); }
.photo-strip strong { display: block; padding-top: 3px; color: var(--ink); font-size: .55rem; letter-spacing: .12em; text-align: center; }
.strip-one { left: 0; bottom: 5px; transform: rotate(7deg); }
.strip-two { right: 0; top: 5px; transform: rotate(-7deg); }

.language-section { background: var(--paper); }
.language-grid { display: grid; grid-template-columns: 1fr .84fr; align-items: center; gap: clamp(42px, 7vw, 88px); }
.language-grid > div:first-child > p:last-child { max-width: 665px; }
.search-list { padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.search-list p { display: flex; align-items: center; gap: 14px; margin: 0; padding: 15px 5px; border-bottom: 1px solid var(--line); font-weight: 750; }
.search-list p:last-child { border-bottom: 0; }
.search-list span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(50,199,196,.11); color: var(--blue); font-size: 1.1rem; }

.transfer-section { color: var(--white); background: var(--ink-deep); }
.transfer-section .section-heading { margin-bottom: 29px; }
.transfer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0; margin: 0; list-style: none; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,.12); }
.transfer-grid li { display: flex; gap: 18px; min-height: 158px; padding: 24px 23px; background: var(--ink-deep); }
.step-number { flex: 0 0 37px; display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #82e5e1; font-family: Georgia, serif; }
.transfer-grid h3 { margin: 4px 0 8px; font-size: 1.04rem; }
.transfer-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: .89rem; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 7vw, 86px); align-items: start; }
.faq-intro { position: sticky; top: 32px; }
.faq-intro a { color: var(--blue); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 4px; cursor: pointer; list-style: none; font-weight: 780; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; flex: 0 0 29px; width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 9px; top: 13px; width: 9px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details div { padding: 0 46px 17px 4px; }
.accordion details p { margin: 0; color: var(--muted); }

.final-cta { padding: 48px 0; color: var(--white); background: linear-gradient(115deg, var(--blue), #3544b5 58%, #26318d); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 790px; font-size: clamp(2.15rem, 3.8vw, 3.75rem); }
.button-light { flex: 0 0 auto; width: auto; min-width: 225px; background: var(--white); color: var(--ink); }
.button-light:hover { background: #e7fffd; }

.site-footer { padding: 22px 0; background: #080d18; color: rgba(255,255,255,.58); font-size: .8rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.footer-inner p { margin: 0; }
.footer-inner a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-inner a:hover { color: var(--white); }

@media (max-width: 980px) {
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { padding-bottom: 0; }
  .purchase-card { max-width: 640px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .market-grid, .language-grid { grid-template-columns: 1fr; }
  .photo-strip-stage { min-height: 370px; max-width: 680px; width: 100%; margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; max-width: 700px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { padding: 15px 0; }
  .brand-mark { flex-basis: 40px; width: 40px; height: 40px; border-radius: 12px; }
  .brand-mark::before { left: 8px; top: 12px; width: 24px; height: 18px; }
  .brand-mark::after { left: 15px; top: 16px; width: 8px; height: 8px; }
  .brand-mark span { left: 13px; top: 8px; }
  .brand-name { font-size: .83rem; }
  .header-inner { gap: 9px; }
  .brand { gap: 8px; }
  .header-cta { padding: 8px 10px; font-size: .7rem; }
  .hero { min-height: auto; padding: 112px 0 82px; }
  .hero::after { bottom: -128px; }
  .hero h1 { font-size: clamp(2.65rem, 12.5vw, 3.9rem); }
  .hero-video { object-position: 58% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,10,22,.86) 0%, rgba(10,17,31,.73) 68%, rgba(16,22,36,.5) 100%),
      linear-gradient(180deg, rgba(5,9,18,.24) 0%, rgba(5,9,18,.03) 48%, rgba(5,9,18,.46) 100%);
  }
  .purchase-card { border-radius: 22px; }
  .section { padding: 50px 0; }
  .benefit-grid { grid-template-columns: 1fr; margin-top: 27px; }
  .benefit-card { min-height: 205px; }
  .transfer-grid { grid-template-columns: 1fr; }
  .transfer-grid li { min-height: 132px; }
  .photo-strip-stage { min-height: 340px; }
  .brand-card { inset: 48px 24px 42px; }
  .photo-strip { width: 88px; }
  .photo-strip span { height: 54px; }
  .strip-one { left: -2px; }
  .strip-two { right: -2px; }
  .final-cta { padding: 42px 0; }
  .button-light { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 430px) {
  .brand-name { font-size: .72rem; }
  .header-cta { padding: 7px 9px; font-size: .65rem; }
  .purchase-card h2 { font-size: clamp(.82rem, 4vw, .94rem); }
  .photo-strip { width: 76px; padding: 6px 6px 9px; }
  .photo-strip span { height: 47px; margin-bottom: 5px; }
  .brand-card { inset: 45px 18px 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-video { display: none; }
}

/* 2026-07-22 clarity and CSM Web Designs update */
.site-header {
  position: relative;
  inset: auto;
  padding: 16px 0;
  background: #080d18;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero {
  min-height: 650px;
  padding: 62px 0 72px;
}
.hero::after {
  bottom: -116px;
}
.hero-grid {
  align-items: center;
}
.hero-copy {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: rgba(5,10,22,.56);
  box-shadow: 0 22px 60px rgba(2,6,15,.2);
  backdrop-filter: blur(8px);
}
.sale-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(130,229,225,.42);
  border-radius: 999px;
  color: #9ff0ed;
  background: rgba(50,199,196,.12);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.hero h1 {
  max-width: none;
  white-space: nowrap;
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  text-shadow: 0 3px 22px rgba(0,0,0,.42);
}
.hero-tagline {
  max-width: 690px;
  margin: 18px 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.hero-intro {
  max-width: 650px;
  color: rgba(255,255,255,.84);
}
.hero-tags {
  margin: 20px 0 22px;
}
.domain-display { display: none; }

.design-section {
  padding-top: 54px;
  padding-bottom: 54px;
  background: linear-gradient(135deg, #eef6ff 0%, #f9fbff 52%, #f7f8fb 100%);
}
.design-card {
  display: grid;
  grid-template-columns: minmax(190px, .58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(23,32,51,.11);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 60px rgba(13,20,36,.09);
}
.design-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 20px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 48%, rgba(50,199,196,.18), rgba(88,104,232,.08) 55%, transparent 76%);
}
.design-logo-wrap img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(13,20,36,.2));
}
.design-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.038em;
}
.design-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}
.design-copy .design-note {
  font-size: .86rem;
}
.design-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}
.design-actions .button {
  width: auto;
  min-width: 228px;
}
.design-secondary {
  background: #fff;
}

@media (max-width: 980px) {
  .hero { padding-top: 48px; }
  .design-card { grid-template-columns: 1fr; }
  .design-logo-wrap { min-height: 180px; }
  .design-logo-wrap img { width: min(65vw, 260px); }
}

@media (max-width: 720px) {
  .site-header { padding: 13px 0; }
  .hero { padding: 34px 0 62px; }
  .hero-copy { padding: 22px 18px; border-radius: 20px; }
  .hero h1 { font-size: clamp(1.55rem, 8.1vw, 2.15rem); }
  .hero-tagline { margin-top: 15px; font-size: clamp(1.35rem, 6.8vw, 1.8rem); }
  .sale-badge { margin-bottom: 12px; }
  .design-section { padding-top: 42px; padding-bottom: 42px; }
  .design-card { padding: 24px 18px; border-radius: 22px; }
  .design-logo-wrap { min-height: 155px; padding: 10px; }
  .design-actions { display: grid; }
  .design-actions .button { width: 100%; min-width: 0; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 1.46rem; }
}
