:root {
  --bg: #0d0712;
  --bg-2: #15091d;
  --bg-3: #251029;
  --panel: rgba(20, 10, 24, 0.74);
  --panel-strong: rgba(29, 14, 34, 0.9);
  --text: #f8f1e6;
  --text-soft: #dcc6b5;
  --text-muted: #c28d63;
  --accent: #c97832;
  --accent-2: #f0c868;
  --line: rgba(255, 214, 170, 0.08);
  --line-strong: rgba(255, 214, 170, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-lift: 0 36px 100px rgba(0, 0, 0, 0.5);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #060308;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(6, 3, 8, 0.78), rgba(6, 3, 8, 0.9)),
    url("hero-bg-purple-gold.jpg") center center / cover no-repeat;
  transform: scale(1.03);
}

.site-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 152, 57, 0.12), transparent 24%),
    radial-gradient(circle at 25% 18%, rgba(120, 28, 106, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(10, 4, 12, 0.15), rgba(4, 2, 8, 0.45));
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 183, 91, 0.1), transparent 18%),
    radial-gradient(circle at 18% 62%, rgba(129, 34, 111, 0.08), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(255, 124, 63, 0.04), transparent 28%);
  filter: blur(60px);
  animation: ambientMove 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  opacity: 0.12;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(14, 7, 18, 0.9),
    rgba(14, 7, 18, 0.58)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 68px;
  flex: 0 0 68px;
}

.brand-mark img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.brand-sub {
  margin-top: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--text-soft);
}

.nav-links a,
.concept-copy a,
.footer-links a,
.privacy-note a,
.policy-contact a {
  position: relative;
  transition: color var(--transition);
}

.nav-links a:hover,
.concept-copy a:hover,
.footer-links a:hover,
.privacy-note a:hover,
.policy-contact a:hover {
  color: var(--accent-2);
}

.nav-links a::after,
.concept-copy a::after,
.footer-links a::after,
.privacy-note a::after,
.policy-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.nav-links a:hover::after,
.concept-copy a:hover::after,
.footer-links a:hover::after,
.privacy-note a:hover::after,
.policy-contact a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, #ffcc7c, #c86c2f);
  color: #1c140d;
  box-shadow: 0 16px 34px rgba(201, 120, 50, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: rgba(255, 173, 84, 0.08);
  border-color: rgba(240, 200, 104, 0.28);
}

.nav-cta {
  min-width: 162px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 183, 91, 0.13), transparent 60%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, black, transparent 80%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 193, 122, 0.12);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-14deg);
}

.orbit-a {
  width: 620px;
  height: 260px;
  top: 70px;
  right: -90px;
}

.orbit-b {
  width: 420px;
  height: 180px;
  top: 210px;
  right: 20px;
}

.orbit-c {
  width: 720px;
  height: 300px;
  bottom: -90px;
  left: -180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.concept-kicker,
.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
}

.eyebrow::before,
.section-label::before,
.concept-kicker::before,
.service-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(240, 200, 104, 0.65);
}

.section-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}

.hero-copy h1 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.55rem, 5.8vw, 5.75rem);
  line-height: 0.92;
  max-width: 11.6ch;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-text,
.section-intro p,
.difference-copy p,
.concept-copy p,
.cta-copy p,
.about-content p,
.service-card p {
  color: var(--text-soft);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 55ch;
  font-size: 1.06rem;
}

.hero-personal {
  margin: 16px 0 0;
  max-width: 56ch;
  color: rgba(248, 241, 230, 0.86);
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.micro-trust {
  margin: 16px 0 0;
  color: var(--accent-2);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-trust div,
.contact-points div,
.about-trust div,
.thankyou-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero-trust strong,
.contact-points strong,
.about-trust strong,
.thankyou-points strong {
  display: block;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.hero-trust span,
.contact-points span,
.about-trust span,
.thankyou-points span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.logo-vault {
  position: relative;
  top: -72px;
  width: min(100%, 460px);
  margin-left: auto;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(30, 13, 31, 0.96), rgba(12, 7, 16, 0.98));
  box-shadow: var(--shadow-lift);
}

.logo-vault::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(255, 181, 92, 0.16), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.logo-vault img {
  width: 100%;
}

.insight {
  position: absolute;
  width: 210px;
  padding: 18px;
  background: rgba(17, 8, 23, 0.88);
}

.insight span {
  color: var(--accent-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}

.insight strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1rem;
}

.insight p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.insight-left {
  left: -54px;
  top: 78px;
}

.insight-right {
  right: -6px;
  bottom: 82px;
}

.manifesto-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 4, 14, 0.22);
  backdrop-filter: blur(8px);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0;
}

.manifesto-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.section {
  padding: 90px 0;
}

.section-intro {
  margin-bottom: 32px;
}

.section-intro h2,
.cta-copy h2,
.difference-copy h2,
.about-content h2 {
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.split-intro {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 32px;
  align-items: end;
}

.about-section {
  position: relative;
}

.about-section:hover {
  background: radial-gradient(circle at center, rgba(255, 165, 82, 0.05), transparent 60%);
}

.about-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 173, 84, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(24, 10, 28, 0.96), rgba(13, 7, 18, 0.98));
  box-shadow: var(--shadow-lift);
  align-items: center;
}

.about-content p {
  margin: 0 0 14px;
  max-width: 60ch;
  line-height: 1.72;
}

.about-cta {
  margin-top: 20px;
  color: var(--accent-2) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-trust {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-trust div:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(240, 200, 104, 0.08);
}

.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  width: min(100%, 430px);
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(240, 200, 104, 0.16), rgba(240, 200, 104, 0.04));
  border: 1px solid rgba(240, 200, 104, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  filter: brightness(0.9) contrast(1.04) saturate(0.96);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(28, 12, 30, 0.92), rgba(15, 9, 20, 0.98));
}

.service-card h3 {
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.96;
}

.service-card p {
  margin: 0;
  line-height: 1.65;
}

.difference-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 28px;
  align-items: center;
}

.difference-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.difference-list li {
  margin-bottom: 12px;
  line-height: 1.65;
}

.difference-layout {
  padding: 22px;
  background: linear-gradient(180deg, rgba(28, 12, 30, 0.96), rgba(14, 8, 19, 0.98));
}

.difference-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-browser,
.mock-topbar,
.screen-topbar {
  display: flex;
  gap: 8px;
}

.mini-browser span,
.mock-topbar span,
.screen-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.difference-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.difference-steps {
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.step-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.step-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 200, 104, 0.24);
  background: rgba(255, 170, 85, 0.07);
}

.step-chip.active {
  background: rgba(255, 170, 85, 0.14);
  border-color: rgba(240, 200, 104, 0.24);
  color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(240, 200, 104, 0.08);
}

.step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 200, 104, 0.28), rgba(240, 200, 104, 0.02));
}

.difference-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "a b"
    "a c";
  gap: 12px;
  margin-top: 22px;
}

.preview-pane {
  min-height: 120px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 12px;
}

.pane-a {
  grid-area: a;
  min-height: 292px;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(90, 35, 55, 0.68), rgba(27, 12, 23, 0.96));
}

.pane-b {
  grid-area: b;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(79, 32, 68, 0.74), rgba(23, 10, 24, 0.96));
}

.pane-c {
  grid-area: c;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(54, 20, 40, 0.74), rgba(16, 7, 18, 0.96));
}

.mock-browser {
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 227, 170, 0.10);
  background: rgba(14, 11, 16, 0.55);
  padding: 14px;
}

.flow-screen-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 16px;
  padding-bottom: 6px;
}

.flow-kicker {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.flow-title {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
  max-width: 11ch;
}

.flow-copy {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32ch;
  line-height: 1.65;
}

.flow-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 16px;
}

.flow-cta-primary,
.flow-cta-secondary {
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  min-width: 120px;
  min-height: 44px;
}

.flow-cta-primary {
  background: linear-gradient(180deg, #ffd079, #c86c2f);
  color: #1c140d;
}

.flow-cta-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.flow-support-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  padding-top: 0;
}

.flow-support-pill {
  min-height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 241, 230, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.mini-preview-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.mini-preview-card strong {
  color: var(--accent-2);
  font-size: 1.05rem;
}

.mini-preview-card span {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.path-shell {
  position: relative;
  padding: 16px 0 4px;
}

.path-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(240, 200, 104, 0), rgba(240, 200, 104, 0.25) 10%, rgba(240, 200, 104, 0.25) 90%, rgba(240, 200, 104, 0));
}

.concept-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin: 56px 0;
}

.concept-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(240, 200, 104, 0.18), rgba(240, 200, 104, 0.06));
  border: 1px solid rgba(240, 200, 104, 0.20);
  color: var(--accent-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.concept-visual {
  padding: 18px;
  overflow: hidden;
  position: relative;
}

.restaurant-glow::before,
.estate-glow::before,
.fitness-glow::before,
.music-glow::before {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.55;
}

.restaurant-glow::before { background: rgba(255, 140, 66, 0.24); }
.estate-glow::before { background: rgba(240, 200, 104, 0.18); }
.fitness-glow::before { background: rgba(196, 86, 62, 0.24); }
.music-glow::before { background: rgba(167, 81, 186, 0.2); }

.concept-screen {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 20px;
  border: 1px solid rgba(255, 227, 170, 0.10);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.restaurant-screen {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(98, 37, 27, 0.8), rgba(31, 10, 16, 0.96));
}

.estate-screen {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(73, 24, 56, 0.8), rgba(24, 9, 24, 0.96));
}

.fitness-screen {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(72, 24, 43, 0.82), rgba(18, 9, 16, 0.96));
}

.music-screen {
  background:
    radial-gradient(circle at top right, rgba(182, 123, 255, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(55, 21, 65, 0.84), rgba(14, 8, 18, 0.96));
}

.screen-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: saturate(1) contrast(1.05);
  transform: scale(1.03);
  z-index: 0;
  transition: transform 1.2s ease;
}

.concept-screen:hover .screen-bg {
  transform: scale(1.1);
}

.screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 6, 12, 0.6),
    rgba(10, 6, 12, 0.85)
  );
  z-index: 1;
}

.screen-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.restaurant-screen .screen-bg {
  background-image: url("concept-restaurant.jpg");
}

.estate-screen .screen-bg {
  background-image: url("concept-realestate.jpg");
}

.fitness-screen .screen-bg {
  background-image: url("concept-fitness.jpg");
}

.music-screen .screen-bg {
  background-image: url("concept-music.jpg");
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.screen-brand {
  font-weight: 700;
  color: var(--accent-2);
}

.screen-links {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.screen-tag {
  align-self: flex-start;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.concept-screen h3 {
  margin: 22px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 9ch;
}

.concept-screen p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 30ch;
}

.screen-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.screen-cta button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(180deg, #ffd079, #c86c2f);
  color: #1c140d;
}

.screen-cta .ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.screen-thumb-row {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.screen-thumb-row .thumb {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.8rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.screen-thumb-row .thumb {
    transition: all 0.25s ease;
}

.screen-thumb-row .thumb:hover {
    border-color: rgba(240,200,104,0.4);
    color: var(--accent-2);
}

.concept-copy h3 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
}

.concept-copy p {
  line-height: 1.7;
}

.concepts-cta-row {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.concept-row:last-child {
    margin-bottom: 5px;
}

.concepts-cta::before {
    content: "";
    width: 80px;
    height: 1px;
    background: rgba(240,200,104,0.3);
    margin-bottom: 24px;
}
.concepts-cta {
    width: 100%;
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concepts-cta-text {
    max-width: 640px;
    margin-bottom: 0 0 24px;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.process-section .section-intro {
  max-width: 760px;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px;
}

.process-track {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 68px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 200, 104, 0.20), rgba(240, 200, 104, 0.04));
}

.process-stop {
  position: relative;
  z-index: 1;
  padding-top: 26px;
}

.stop-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(240, 200, 104, 0.16), rgba(240, 200, 104, 0.06));
  border: 1px solid rgba(240, 200, 104, 0.22);
  color: var(--accent-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.process-stop h3 {
  margin: 16px 0 8px;
  font-size: 1.08rem;
}

.process-stop p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.65;
}

.pricing-section {
  position: relative;
}

.pricing-shell-custom .pricing-tier h3 {
  max-width: 15ch;
}

.pricing-note-quote {
  text-align: center;
  padding: 28px 26px;
  backdrop-filter: blur(10px);
}

.pricing-note-quote p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note-quote strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.pricing-cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.pricing-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-tier {
  position: relative;
  padding: 26px;
  background: linear-gradient(180deg, rgba(28, 12, 30, 0.92), rgba(15, 9, 20, 0.98));
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-tier:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(240, 200, 104, 0.10);
  border-color: rgba(240, 200, 104, 0.18);
}

.pricing-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(36, 14, 34, 0.96), rgba(17, 9, 20, 0.98));
  border-color: rgba(240, 200, 104, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.tier-top-featured{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.featured-badge {
  padding: 7px 12px;  
  border-radius: 999px;
  background: rgba(240, 200, 104, 0.12);
  border: 1px solid rgba(240, 200, 104, 0.18);
  color: var(--accent-2);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.featured-badge-inline {
    position: static;
}

.tier-top {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.tier-label {
  color: var(--accent-2);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tier-price {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.tier-price strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 0.92;
}

.pricing-tier h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.96;
}

.pricing-tier p {
  color: var(--text-soft);
  margin: 14px 0 0;
  line-height: 1.68;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 24px;
  display: grid;
  gap: 12px;
}

.tier-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.55;
}

.tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 14px rgba(240, 200, 104, 0.35);
}

.pricing-note {
  margin-top: 20px;
  padding: 22px 24px;
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-note strong {
  color: var(--accent-2);
}

.pricing-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.final-cta {
  padding-bottom: 94px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.cta-shell {
  padding: 36px;
  background:
    radial-gradient(circle at right top, rgba(255, 181, 92, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(27, 11, 28, 0.96), rgba(13, 8, 18, 0.98));
  box-shadow: var(--shadow-lift);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-human {
  margin: 16px 0 0;
  color: rgba(248, 241, 230, 0.84);
  font-size: 0.98rem;
  line-height: 1.72;
}

.project-form {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(24, 11, 28, 0.96), rgba(13, 8, 18, 0.98));
  box-shadow: var(--shadow-lift);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.project-form label > span {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.project-form em {
  color: var(--text-muted);
  font-style: normal;
  font-weight: 400;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 227, 170, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  color: var(--text);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: rgba(248, 241, 230, 0.45);
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: rgba(240, 200, 104, 0.30);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(240, 200, 104, 0.08);
}

.project-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.project-form select option {
  background: #1b1321;
  color: var(--text);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 227, 170, 0.08);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.checkbox-grid label:hover {
  border-color: rgba(240, 200, 104, 0.24);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.checkbox-grid input {
  width: auto;
  margin: 0;
  accent-color: var(--accent-2);
}

.checkbox-grid span {
  color: var(--text-soft);
  font-weight: 500;
}

.privacy-note {
  margin: 2px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.form-message {
  margin: 0;
  min-height: 22px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-message.error {
  color: #ffb7b7;
}

.form-message.success {
  color: #b8f3cf;
}

.button-loader {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(28, 20, 13, 0.35);
  border-top-color: #1c140d;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}

.button.is-loading .button-loader {
  display: inline-block;
}

.button.is-loading .button-text {
  opacity: 0.72;
}

.button:disabled {
  opacity: 0.85;
  cursor: wait;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 4, 14, 0.28);
  backdrop-filter: blur(8px);
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text);
}

.footer-copy {
  margin: 10px 0 0;
  color: var(--text-soft);
  max-width: 34ch;
  line-height: 1.65;
}

.footer-heading {
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
  width: fit-content;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.policy-page,
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.policy-wrap,
.thankyou-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.policy-card,
.thankyou-card {
  padding: 52px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 92, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(24, 11, 28, 0.96), rgba(13, 8, 18, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.policy-top {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: start;
}

.policy-logo,
.thankyou-logo {
  width: 78px;
  margin-bottom: 24px;
}

.policy-logo img,
.thankyou-logo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.policy-intro h1,
.thankyou-card h1 {
  margin: 14px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.policy-meta {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-lead {
  margin: 0;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.policy-divider {
  width: 100%;
  height: 1px;
  margin: 32px 0 8px;
  background: linear-gradient(90deg, rgba(240, 200, 104, 0.7), rgba(240, 200, 104, 0.12), transparent);
}

.policy-body {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.policy-block {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 214, 170, 0.08);
}

.policy-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-card h2 {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--accent-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.policy-card p,
.policy-card li,
.thankyou-card p {
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 68ch;
}

.policy-card p {
  margin: 0;
}

.policy-card ul {
  padding-left: 20px;
  margin: 12px 0 0;
}

.policy-card li {
  margin-bottom: 10px;
}

.policy-contact {
  margin-top: 12px !important;
  font-weight: 600;
}

.policy-footer {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 214, 170, 0.08);
}

.thankyou-card {
  text-align: center;
}

.thankyou-card p {
  max-width: 56ch;
  margin: 18px auto 0;
  font-size: 1.02rem;
}

.thankyou-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  text-align: left;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 191, 111, 0.14) 0%, rgba(255, 191, 111, 0.06) 32%, transparent 68%);
  filter: blur(18px);
  z-index: 1;
  mix-blend-mode: screen;
  transition: transform 0.08s linear;
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.ambient-1 {
  width: 260px;
  height: 260px;
  top: 18%;
  left: -60px;
  background: rgba(179, 64, 118, 0.18);
}

.ambient-2 {
  width: 220px;
  height: 220px;
  top: 56%;
  right: -40px;
  background: rgba(255, 170, 84, 0.14);
}

.logo-vault,
.insight,
.hero-orbit,
.ambient {
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .logo-vault {
  animation: vaultFloat 6s ease-in-out infinite;
}

.hero .insight-left {
  animation: driftLeft 7s ease-in-out infinite;
}

.hero .insight-right {
  animation: driftRight 8s ease-in-out infinite;
}

.tilt-card {
  transform-style: preserve-3d;
}

.button,
.concept-visual,
.process-stop,
.hero-trust div,
.contact-points div,
.insight,
.logo-vault,
.service-card,
.about-photo-frame,
.step-chip {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.concept-visual:hover,
.logo-vault:hover,
.insight:hover,
.hero-trust div:hover,
.contact-points div:hover,
.service-card:hover,
.about-photo-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(240, 200, 104, 0.10);
}

.concept-row:hover .concept-number,
.process-stop:hover .stop-number {
  box-shadow: 0 0 0 10px rgba(240, 200, 104, 0.05);
}

@keyframes vaultFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes driftLeft {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-8px) translateX(-4px); }
}

@keyframes driftRight {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(8px) translateX(4px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes ambientMove {
  0% {
    transform: translate3d(-40px, -20px, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, 30px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-20px, 40px, 0) scale(1);
  }
}

@media (max-width: 1080px) {
  .contact-shell,
  .pricing-shell,
  .hero-grid,
  .difference-grid,
  .split-intro,
  .concept-row,
  .manifesto-grid,
  .process-rail,
  .about-shell,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .path-line {
    display: none;
  }

  .concept-number {
    left: 28px;
    transform: none;
  }

  .hero-stage {
    min-height: auto;
  }

  .logo-vault {
    margin: 0 auto;
    top: -34px;
  }

  .insight {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .process-track {
    display: none;
  }

  .about-photo-frame {
    width: min(100%, 520px);
  }
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    padding-top: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 11vw, 4.8rem);
    max-width: 9ch;
    line-height: 0.94;
  }

  .hero-trust,
  .two-up,
  .checkbox-grid,
  .thankyou-points,
  .flow-support-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .screen-cta-row,
  .flow-cta-row,
  .screen-cta {
    flex-direction: column;
  }

  .screen-links {
    display: none;
  }

  .difference-steps {
    flex-wrap: wrap;
    gap: 10px;
  }

  .step-line {
    display: none;
  }

  .difference-preview {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c";
  }

  .policy-card,
  .thankyou-card {
    padding: 32px 24px;
  }

  .policy-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .policy-logo,
  .thankyou-logo {
    width: 60px;
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 56px;
    flex-basis: 56px;
  }

  .cta-shell,
  .difference-layout,
  .process-rail,
  .project-form,
  .about-shell {
    padding: 22px;
  }

  .cursor-glow,
  .ambient {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow,
  .ambient,
  body::before {
    display: none;
  }

  .site-bg {
    transform: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero .logo-vault,
  .hero .insight-left,
  .hero .insight-right,
  .button-loader {
    animation: none;
  }
}

.conditional-field {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.conditional-field.show {
  max-height: 120px;
  opacity: 1;
}

.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.contact-direct-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-soft);
  transition: var(--transition);
}

.contact-direct-links a:hover {
  color: var(--accent-2);
  border-color: rgba(240,200,104,0.28);
  background: rgba(255,255,255,0.06);
}