:root {
  color-scheme: light;
  --bg: #f4f3ee;
  --ink: #0b0c0e;
  --muted: #666b72;
  --line: rgba(16, 18, 20, 0.12);
  --glass-line: rgba(255, 255, 255, 0.68);
  --panel: rgba(255, 255, 255, 0.58);
  --panel-strong: rgba(255, 255, 255, 0.74);
  --accent: #0aa58b;
  --amber: #e0a21d;
  --blue: #4d68df;
  --rose: #d95d7b;
  --mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 243, 238, 0.95) 34rem),
    radial-gradient(circle at 12% 22%, rgba(224, 162, 29, 0.12), transparent 18rem),
    radial-gradient(circle at 84% 10%, rgba(10, 165, 139, 0.13), transparent 22rem),
    radial-gradient(circle at 70% 68%, rgba(77, 104, 223, 0.08), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

p {
  line-height: 1.78;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 32px rgba(15, 18, 20, 0.06);
  backdrop-filter: blur(18px) saturate(1.24);
}

.brand,
.nav-links,
.nav-cta {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-links a:hover {
  background: rgba(16, 18, 20, 0.06);
  color: var(--ink);
}

.nav-cta {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 148px 0 78px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin-bottom: 30px;
  font-size: clamp(46px, 8.4vw, 104px);
  line-height: 1.02;
  font-weight: 700;
}

.hero-copy {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(10, 165, 139, 0.22), rgba(77, 104, 223, 0.16) 50%, rgba(224, 162, 29, 0.2));
  backdrop-filter: blur(18px) saturate(1.18);
}

.proof-strip div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 700;
}

.portfolio,
.workflow,
.services,

.rocket-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.rocket-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.rocket-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(16, 18, 20, 0.08);
  background: radial-gradient(circle, rgba(10, 165, 139, 0.2), transparent 62%);
  opacity: 0.7;
}

.build-card::after {
  border-color: rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle, rgba(224, 162, 29, 0.32), transparent 62%);
}

.rocket-card .plan {
  max-width: calc(100% - 96px);
}

.rocket-card h3 {
  max-width: 560px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.rocket-card .price {
  margin-top: 28px;
  font-size: clamp(34px, 4vw, 48px);
}

.rocket-card .duration {
  font-family: var(--mono);
  font-size: 13px;
}

.rocket-card li {
  line-height: 1.72;
}

.blueprint-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 86% 12%, rgba(10, 165, 139, 0.14), transparent 16rem);
}

.build-card {
  background:
    radial-gradient(circle at 78% 10%, rgba(224, 162, 29, 0.15), transparent 18rem),
    linear-gradient(145deg, rgba(13, 15, 17, 0.96), rgba(8, 9, 12, 0.94));
}

.footer-cta {
  padding: 128px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 760px;
  display: block;
}

.section-heading h2,
.footer-cta h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 700;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38));
  backdrop-filter: blur(20px) saturate(1.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(10, 165, 139, 0.18) 34%, rgba(77, 104, 223, 0.12) 68%, rgba(255, 255, 255, 0.36));
  opacity: 0.46;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 165, 139, 0.46);
  box-shadow: 0 0 0 1px rgba(10, 165, 139, 0.12), 0 18px 58px rgba(10, 20, 26, 0.07);
}

.case-feature {
  grid-column: 1 / -1;
}

.case-visual {
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.case-feature .case-visual {
  min-height: clamp(520px, 48vw, 640px);
}

.dark-product {
  position: relative;
  padding: 26px;
  background:
    radial-gradient(circle at 70% 10%, rgba(77, 104, 223, 0.26), transparent 24rem),
    radial-gradient(circle at 14% 72%, rgba(10, 165, 139, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    #07080c;
  color: #fff;
}

.dark-product::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: translateX(-70%);
  transition: transform 680ms ease;
}

.case-feature:hover .dark-product::after {
  transform: translateX(70%);
}



.endhere-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.66fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 18% 52%, rgba(255, 255, 255, 0.09), transparent 17rem),
    radial-gradient(circle at 80% 16%, rgba(224, 162, 29, 0.1), transparent 16rem),
    linear-gradient(135deg, #08090c, #111214 52%, #08090c);
  color: #fff;
}

.phone-shot {
  justify-self: start;
  width: min(100%, 370px);
  aspect-ratio: 361 / 737;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #07080a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 520ms ease, filter 520ms ease;
}

.case-feature:hover .phone-shot img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.03);
}

.endhere-copy {
  max-width: 560px;
}

.endhere-copy .case-overlay {
  position: static;
  width: fit-content;
  margin-bottom: 34px;
}

.endhere-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.04;
  font-weight: 700;
}

.endhere-copy p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.82;
}

.tag-row-dark span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.endhere-copy .floating-cue {
  position: static;
  display: inline-flex;
  max-width: 100%;
}

.image-bleed {
  position: relative;
  display: grid;
  place-items: stretch;
  background: #08090d;
}

.image-bleed img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.case-card:hover .image-bleed img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.endhere-visual img {
  object-position: center top;
}

.quotemaster-visual {
  min-height: 390px;
  background: #0c1222;
}

.quotemaster-visual img {
  object-position: center center;
}

.case-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
  max-width: calc(100% - 36px);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(1.16);
}

.case-overlay-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 9, 13, 0.48);
  color: #fff;
}

.case-overlay span {
  color: currentColor;
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0.62;
  text-transform: uppercase;
}

.case-overlay strong {
  font-size: 22px;
  line-height: 1;
}

.window-bar {
  display: flex;
  gap: 7px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.product-note {
  position: absolute;
  top: 24px;
  right: 26px;
  display: grid;
  gap: 6px;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.product-note span,
.floating-cue,
.metric-rail span,
.code-tabs span {
  font-family: var(--mono);
}

.product-note span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  text-transform: uppercase;
}

.product-note strong {
  font-size: 24px;
  line-height: 1;
}

.emotion-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: end;
  margin-top: clamp(120px, 18vw, 210px);
}

.emotion-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(10, 165, 139, 0.35), rgba(77, 104, 223, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.emotion-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.2;
}

.emotion-card strong {
  max-width: 420px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 700;
}

.emotion-list {
  display: grid;
  gap: 14px;
}

.emotion-list span {
  height: clamp(48px, 6vw, 72px);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.emotion-list span:nth-child(2) {
  width: 78%;
}

.emotion-list span:nth-child(3) {
  width: 92%;
}

.emotion-list span:nth-child(4) {
  width: 64%;
}

.floating-cue {
  position: absolute;
  right: 26px;
  bottom: 24px;
  max-width: calc(100% - 52px);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.5);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  backdrop-filter: blur(16px);
}

.dashboard-product {
  min-height: 360px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 243, 238, 0.94)),
    radial-gradient(circle at 82% 12%, rgba(10, 165, 139, 0.2), transparent 12rem);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-header strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
}

.metric-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.metric-rail span {
  padding: 7px 9px;
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #555b62;
  font-size: 11px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.dashboard-grid div {
  height: 74px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 18, 20, 0.08);
}

.chart-lines {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 138px;
  padding: 16px;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(77, 104, 223, 0.12), rgba(10, 165, 139, 0.1));
}

.chart-lines span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--blue);
}

.chart-lines span:nth-child(1) {
  height: 44%;
}

.chart-lines span:nth-child(2) {
  height: 72%;
  background: var(--accent);
}

.chart-lines span:nth-child(3) {
  height: 54%;
  background: var(--amber);
}

.chart-lines span:nth-child(4) {
  height: 86%;
}

.code-product {
  min-height: 360px;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 10%, rgba(217, 93, 123, 0.16), transparent 12rem),
    linear-gradient(145deg, #101214, #090a0d);
  color: #f8f8f5;
}

.code-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  overflow: hidden;
}

.code-tabs span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  white-space: nowrap;
}

.code-tabs .active {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

pre {
  margin: 0;
  white-space: pre-wrap;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.78;
}

.component-row {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.component-row button {
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.component-row .quiet {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.case-content {
  padding: 24px 26px 28px;
}

.case-feature .case-content {
  display: none;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag-row span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(16, 18, 20, 0.06);
  color: #3f444a;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.case-content h3,
.step h3,
.price-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
}



.case-content p,
.step p,
.price-card li,
.price-card .duration {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.78;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(10, 165, 139, 0.18), rgba(77, 104, 223, 0.14));
}

.step {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.featured-plan {
  background: rgba(13, 15, 17, 0.94);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.plan {
  margin-bottom: 28px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.price {
  margin-bottom: 4px;
  font-family: var(--mono);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

.featured-plan .duration,
.featured-plan li {
  color: rgba(255, 255, 255, 0.68);
}

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

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.footer-cta {
  padding-bottom: 72px;
}

.footer-cta h2 {
  max-width: 720px;
  margin-bottom: 34px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.qr-trigger {
  display: grid;
  min-width: min(100%, 360px);
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.qr-trigger span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 700;
}

.qr-trigger strong {
  font-size: 30px;
}

.email-link {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.contact-panel.is-open {
  pointer-events: auto;
  opacity: 1;
}

.panel-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 8, 10, 0.42);
  backdrop-filter: blur(6px);
}

.panel-card {
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 58px rgba(15, 18, 20, 0.12);
  backdrop-filter: blur(20px);
  transform: translateX(24px);
  transition: transform 180ms ease;
}

.contact-panel.is-open .panel-card {
  transform: translateX(0);
}

.panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.panel-card h2 {
  max-width: 300px;
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.04;
  font-weight: 700;
}

.panel-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}

.panel-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 700;
}

.qr-placeholder {
  width: 100%;
  aspect-ratio: 1;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(16, 18, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.qr-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .navbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .section-heading,
  .bento-grid,
  .pricing-grid,
  .rocket-grid,
  .steps,
  .endhere-showcase {
    grid-template-columns: 1fr;
  }

  .case-feature .case-visual {
    min-height: auto;
  }

  .phone-shot {
    justify-self: center;
    width: min(100%, 340px);
  }

  .endhere-copy {
    max-width: 100%;
  }

  .emotion-board {
    grid-template-columns: 1fr;
    margin-top: 100px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .step span {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .navbar {
    width: min(calc(100% - 20px), var(--max));
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .button {
    width: 100%;
  }

  .portfolio,
  .workflow,
  .services,
  .footer-cta {
    padding-top: 84px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 28px;
  }

  .case-feature .case-visual {
    min-height: auto;
  }

  .case-visual {
    min-height: 330px;
  }

  .endhere-showcase {
    padding: 18px;
    gap: 22px;
  }

  .phone-shot {
    width: min(100%, 286px);
  }

  .endhere-copy h3 {
    font-size: 32px;
  }

  .dark-product {
    padding: 18px;
  }

  .product-note {
    top: 16px;
    right: 16px;
    min-width: 134px;
    padding: 10px 12px;
  }

  .product-note strong {
    font-size: 19px;
  }

  .emotion-board {
    margin-top: 92px;
    gap: 14px;
  }

  .emotion-card {
    min-height: 174px;
    padding: 22px;
  }

  .emotion-card strong {
    font-size: 28px;
  }

  .emotion-list {
    gap: 10px;
  }

  .emotion-list span {
    height: 38px;
  }

  .floating-cue {
    position: static;
    display: inline-flex;
    margin-top: 16px;
    max-width: 100%;
    border-radius: 7px;
  }

  .dashboard-product,
  .code-product,
  .quotemaster-visual {
    min-height: 320px;
  }

  .dashboard-product,
  .code-product {
    padding: 18px;
  }

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

  .dashboard-grid div {
    height: 54px;
  }

  .chart-lines {
    height: 110px;
  }

  .case-content,
  .case-feature .case-content {
    padding: 20px;
  }

  .price-card,
  .step,
  .proof-strip div {
    padding: 22px;
  }

  .email-link,
  .qr-trigger {
    width: 100%;
  }

  .panel-card {
    inset: auto 10px 10px;
    width: auto;
    max-height: calc(100% - 20px);
    overflow: auto;
  }
}
