@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #0a0c10;
  --bg2:       #0f1218;
  --bg3:       #161b24;
  --surface:   #1a2030;
  --surface2:  #212840;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --text:      #e8e4dc;
  --text2:     #9fa8b8;
  --text3:     #5c6478;
  --gold:      #c9a96e;
  --gold2:     #e8c98a;
  --gold3:     #a07840;
  --gold-glow: rgba(201,169,110,0.15);
  --green:     #34d399;
  --green-bg:  rgba(52,211,153,0.08);
  --white:     #ffffff;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease-out);
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 16px; height: 16px; }
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  animation: orbDrift 20s ease-in-out infinite alternate;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,130,201,0.05) 0%, transparent 70%);
  bottom: 20%; left: -80px;
  animation-delay: -8s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation-delay: -14s;
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  transition: all 0.4s var(--ease-out);
}
nav.scrolled {
  background: rgba(10,12,16,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  padding: 14px 56px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--text2);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 24px;
  border-radius: 1px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out) !important;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  z-index: -1;
}
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta:hover { color: var(--bg) !important; }
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 80px 72px;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: revealRight 0.8s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 28px;
  opacity: 0;
  animation: revealUp 0.9s var(--ease-out) 0.35s forwards;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 50%, var(--gold3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--text2);
  line-height: 1.8; max-width: 420px; margin-bottom: 44px;
  opacity: 0;
  animation: revealUp 0.9s var(--ease-out) 0.5s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  opacity: 0;
  animation: revealUp 0.9s var(--ease-out) 0.65s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 1px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.35s var(--ease-out);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold2);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out);
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,169,110,0.3); }
.btn-ghost {
  color: var(--text2); font-size: 13px; font-weight: 400;
  text-decoration: none; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  white-space: nowrap;
  transition: color 0.3s; position: relative;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after { content: '→'; transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn-ghost:hover::after { transform: translateX(5px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: revealUp 0.9s var(--ease-out) 0.8s forwards;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; color: var(--text);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 72px 80px 24px;
  position: relative; z-index: 1;
}
.card-stack {
  position: relative; width: 320px; height: 460px;
  opacity: 0;
  animation: revealUp 1s var(--ease-out) 0.4s forwards;
}
.digital-card {
  position: absolute; width: 300px;
  border-radius: 20px; padding: 32px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.card-1 {
  background: linear-gradient(135deg, #1a2235 0%, #0d1520 100%);
  border: 1px solid rgba(201,169,110,0.2);
  top: 0; left: 0;
  animation: float1 7s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,169,110,0.1);
}
.card-2 {
  background: linear-gradient(135deg, #151c2a 0%, #0a1018 100%);
  border: 1px solid rgba(255,255,255,0.05);
  top: 20px; left: 16px;
  animation: float2 7s ease-in-out infinite 1.2s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-main {
  background: linear-gradient(160deg, #1e2535 0%, #141926 100%);
  border: 1px solid rgba(201,169,110,0.25);
  top: 40px; left: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 10;
  animation: float3 7s ease-in-out infinite 0.6s;
}
@keyframes float1 { 0%,100%{transform:rotate(-5deg) translateY(24px)} 50%{transform:rotate(-3.5deg) translateY(14px)} }
@keyframes float2 { 0%,100%{transform:rotate(2.5deg)} 50%{transform:rotate(1.5deg) translateY(-6px)} }
@keyframes float3 { 0%,100%{transform:rotate(0deg)} 50%{transform:rotate(0.8deg) translateY(-10px)} }
.card-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold3) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: var(--bg);
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--text);
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.card-title { font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
.card-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.card-info { display: flex; flex-direction: column; gap: 8px; }
.card-info-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; color: var(--text2);
}
.card-info-icon {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.card-back-deco {
  position: absolute; bottom: 16px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 700;
  color: rgba(201,169,110,0.08); line-height: 1;
}
.card-back-name {
  font-size: 12px; color: rgba(201,169,110,0.4);
  margin-top: 12px; letter-spacing: 0.04em;
}
.strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.strip-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  padding: 16px 0;
}
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 32px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text3);
  flex-shrink: 0;
}
.strip-item span { color: var(--gold); }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold3); opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.section { padding: 60px 72px; position: relative; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.5px; color: var(--text);
  margin-bottom: 18px;
}
.section-sub { font-size: 16px; font-weight: 300; color: var(--text2); max-width: 520px; line-height: 1.8; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 64px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}
.step {
  background: var(--bg2);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.step::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.step:hover { background: var(--bg3); }
.step:hover::before { transform: scaleX(1); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300;
  color: var(--border2); line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}
.step:hover .step-num { color: rgba(201,169,110,0.15); }
.step-icon { font-size: 28px; margin-bottom: 18px; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: var(--text);
  margin-bottom: 14px; letter-spacing: 0.01em;
}
.step-desc { font-size: 14px; font-weight: 300; color: var(--text2); line-height: 1.8; }
.gallery-section {
  background: var(--bg2);
  padding: 80px 72px;
}
.filter-tabs { 
  display: flex; 
  gap: 10px; 
  margin: 32px 0 48px; 
  flex-wrap: wrap; 
  justify-content: center;
}
.filter-tab {
  padding: 10px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: var(--text3);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.filter-tab:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.3);
  color: var(--text);
  transform: translateY(-2px);
}
.filter-tab.active {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: var(--gold);
  color: var(--bg);
  box-shadow: 0 8px 20px rgba(201,169,110,0.25);
  font-weight: 600;
}
.templates-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tmpl-card {
  border-radius: 12px; overflow: hidden; cursor: pointer;
  position: relative; aspect-ratio: 3/4;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  border: 1px solid var(--border);
}
.tmpl-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.tmpl-card:hover .tmpl-overlay { opacity: 1; }
.tmpl-card:hover .tmpl-inner { transform: scale(1.03); }
.tmpl-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; position: relative;
  transition: transform 0.5s var(--ease-out);
}
.tmpl-t1 { background: linear-gradient(160deg, #0f1824 0%, #1a0f24 100%); }
.tmpl-t2 { background: linear-gradient(160deg, #1c2414 0%, #0f1a0d 100%); }
.tmpl-t3 { background: linear-gradient(160deg, #1a1410 0%, #261a0a 100%); }
.tmpl-t4 { background: linear-gradient(160deg, #0f1a24 0%, #14242a 100%); }
.tmpl-t5 { background: linear-gradient(160deg, #1a0f18 0%, #24101e 100%); }
.tmpl-t6 { background: linear-gradient(160deg, #1a1814 0%, #241c10 100%); }
.tmpl-t7 { background: linear-gradient(160deg, #101824 0%, #101420 100%); }
.tmpl-t8 { background: linear-gradient(160deg, #1a1010 0%, #241010 100%); }
.tmpl-deco {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700;
  color: rgba(255,255,255,0.04);
  user-select: none;
}
.tmpl-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.6;
}
.tmpl-name-preview {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--text);
  margin-bottom: 2px; position: relative; z-index: 1;
}
.tmpl-title-preview {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); position: relative; z-index: 1; font-weight: 500;
}

@media (max-width: 768px) {
  .tmpl-name-preview { font-size: 14px; }
  .tmpl-title-preview { font-size: 8px; }
  .tmpl-deco { font-size: 60px; }
}

@media (max-width: 480px) {
  .tmpl-name-preview { font-size: 12px; }
  .tmpl-title-preview { font-size: 7px; }
  .tmpl-deco { font-size: 40px; }
}
.tmpl-overlay {
  position: absolute; inset: 0;
  background: rgba(10,12,16,0.88);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  border-radius: 12px;
}
.tmpl-overlay-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  padding: 12px 24px; border: 1px solid var(--gold3);
  border-radius: 1px;
  transition: all 0.2s;
}
.tmpl-overlay-btn:hover { background: var(--gold); color: var(--bg); }
.tmpl-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 1px; z-index: 2;
}
.badge-free { background: var(--green-bg); color: var(--green); border: 1px solid rgba(52,211,153,0.2); }
.badge-pro { background: rgba(201,169,110,0.15); color: var(--gold); border: 1px solid rgba(201,169,110,0.3); }
.pricing-section { padding: 80px 72px; background: var(--bg); }
.pricing-toggle {
  display: flex; align-items: center; gap: 14px;
  margin-top: 48px; margin-bottom: 56px;
  font-size: 13px; color: var(--text2);
}
.toggle-track {
  position: relative; width: 48px; height: 26px;
  background: var(--surface); border-radius: 13px;
  cursor: pointer; transition: background 0.3s;
  border: 1px solid var(--border2);
}
.toggle-track.on { background: var(--gold3); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--text); transition: transform 0.3s var(--ease-out);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.toggle-track.on .toggle-knob { transform: translateX(22px); background: var(--gold2); }
.save-pill {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--green-bg); color: var(--green);
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(52,211,153,0.2);
}
.plans-grid {
  display: grid; grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.plan {
  background: var(--bg2); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.plan:hover { background: var(--bg3); }
.plan.featured {
  background: var(--surface);
}
.plan.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.plan-tag {
  display: inline-block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 1px;
  background: rgba(201,169,110,0.12); color: var(--gold);
  border: 1px solid rgba(201,169,110,0.25);
  margin-bottom: 28px;
}
.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 400; color: var(--text); margin-bottom: 4px;
}
.plan-price { margin: 24px 0; display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.plan-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600; line-height: 1; color: var(--text);
}
.plan.featured .plan-amount {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-period { font-size: 12px; color: var(--text3); white-space: nowrap; }
.plan-desc { font-size: 13px; font-weight: 300; color: var(--text2); line-height: 1.7; margin-bottom: 32px; }
.plan-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 14px; border-radius: 1px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  margin-bottom: 36px; cursor: pointer;
}
.plan-btn-outline {
  border: 1px solid var(--border2); color: var(--text2); background: transparent;
}
.plan-btn-outline:hover { border-color: var(--gold3); color: var(--gold); }
.plan-btn-solid {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: var(--bg); border: none;
}
.plan-btn-solid:hover { box-shadow: 0 8px 32px rgba(201,169,110,0.3); transform: translateY(-1px); }
.testi-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0 0 64px;
  background: transparent;
  position: relative;
}
.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 60s linear infinite;
  align-items: stretch; 
}
.testi-track:hover { animation-play-state: paused; }
.testi-card {
  width: 400px;
  min-height: 380px; 
  flex-shrink: 0;
  background: var(--bg3);
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex !important;
  flex-direction: column !important; 
  position: relative;
  transition: transform 0.4s var(--ease-out);
}
.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  color: var(--gold3);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.5;
}
.testi-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 40px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto !important; 
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold3);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.testi-info h4 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}
.testi-info p {
  font-size: 12px;
  color: var(--muted);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: 120px 5% 20px; text-align: center; }
  .hero-left { max-width: 100%; margin-bottom: 20px; padding: 40px 20px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .card-stack { transform: scale(0.9); margin: 0 auto; }
  .nav-links { display: none; }
  .hamburger { display: block !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 20px; }
  .gallery-section { padding: 60px 20px; }
  .pricing-section { padding: 60px 20px; }
  .templates-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 20px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-title { font-size: 2.8rem; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .section-title { font-size: 2.2rem; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { width: 320px; padding: 32px 28px; }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
  .footer-top > div { display: flex; flex-direction: column; align-items: center; }
  .footer-brand { order: 4; align-items: center; text-align: center; }
  .footer-col-title { text-align: center; }
  .footer-top > div:nth-child(2) { order: 1; }
  .footer-top > div:nth-child(3) { order: 2; }
  .footer-top > div:nth-child(4) { order: 3; }
  .footer-socials { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-links a { width: auto; }
  .templates-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-left { padding: 40px 20px 10px 20px; margin-bottom: 10px; align-items: center; text-align: center; }
  .hero-stats { gap: 24px; flex-wrap: nowrap; justify-content: center; margin-top: 20px; padding-top: 20px; }
  .hero-actions { justify-content: center; }
  .pricing-toggle { flex-wrap: wrap; justify-content: center; }
  .strip { margin-top: 0; }
  .strip-track { padding: 10px 0; }
  .strip-item { padding: 0 16px; font-size: 10px; }
  .step { padding: 32px 24px; }
  .step-num { font-size: 60px; }
  .section { text-align: center; }
  .section-label { justify-content: center; text-align: center; }
  .section-title { text-align: center; margin-left: auto; margin-right: auto; }
  .section-sub { margin: 0 auto; text-align: justify; }
  .mobile-link { text-align: center; }
  .testi-section { text-align: center; }
  .testi-section .section-label, .testi-section .section-title { padding-left: 0 !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .auth-card { padding: 32px 24px; }
  .mobile-menu-inner { text-align: center; }
  body { cursor: default !important; }
  .cursor, .cursor-ring { display: none !important; }
}
@media (max-width: 480px) {
  .hero { min-height: auto; padding-top: 16px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-title { font-size: 2.2rem; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-sub { font-size: 14px; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .testi-grid { justify-content: center; }
  .testi-card { width: 280px; min-height: 320px; }
  .templates-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .hero-left { padding: 30px 16px 5px 16px; margin-bottom: 5px; align-items: center; text-align: center; }
  .hero-stats { gap: 16px; flex-wrap: nowrap; justify-content: center; margin-top: 15px; padding-top: 15px; }
  .hero-actions { justify-content: center; }
  .section-sub { font-size: 14px; text-align: justify; }
  .section { text-align: center; }
  .section-label { justify-content: center; text-align: center; }
  .section-sub { margin: 0 auto; }
  .testi-section { text-align: center; }
  .testi-section .section-label, .testi-section .section-title { padding-left: 0 !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .auth-card { padding: 24px 20px; max-width: 100%; }
  .strip { margin-top: 0; }
  .strip-track { padding: 8px 0; }
  .step { padding: 24px 20px; }
  .step-icon { font-size: 24px; }
  .step-title { font-size: 20px; }
  .step-desc { font-size: 13px; }
  .plan { padding: 28px 20px; }
  .plan-name { font-size: 26px; }
  .plan-amount { font-size: 36px; }
  .plan-price { margin: 20px 0; }
  .plan-desc { font-size: 12px; margin-bottom: 24px; }
  .plan-btn { margin-bottom: 24px; }
  .plan-divider { margin-bottom: 20px; }
  .plan-features { gap: 12px; }
  .plan-feature { font-size: 12px; }
  .nav-logo { font-size: 20px; }
  .cta-final { padding: 80px 20px; }
  .cta-final .section-title { font-size: 2rem; }
  .footer-top > div { align-items: center; }
  .footer-links { align-items: center; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
  body { cursor: default !important; }
  .cursor, .cursor-ring { display: none !important; }
}
.plan-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.plan.featured .plan-divider { background: var(--border2); }
.plan-features { display: flex; flex-direction: column; gap: 14px; }
.plan-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 300; color: var(--text2); line-height: 1.5;
}
.plan-feature-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0; font-weight: 700;
  border: 1px solid rgba(52,211,153,0.2);
}
.plan.featured .plan-feature-icon {
  background: rgba(201,169,110,0.1); color: var(--gold);
  border-color: rgba(201,169,110,0.2);
}
.plan.featured .plan-feature-icon.no {
  background: transparent; color: var(--gold); border-color: rgba(201,169,110,0.2);
}
.plan-feature-icon.no { background: var(--surface); color: var(--text3); border-color: var(--border); }
.testi-section {
  background: var(--bg2); padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.testi-section .section-label, 
.testi-section .section-title {
  padding-left: 72px;
}
.testi-grid {
  display: flex;
  align-items: stretch; 
  width: max-content;
  animation: testiMarquee 60s linear infinite;
  gap: 20px;
  margin-top: 64px;
  padding: 0 20px;
}
.testi-grid:hover {
  animation-play-state: paused;
}
.testi-card {
  width: 400px;
  min-height: 480px !important; 
  height: auto !important;
  flex-shrink: 0;
  background: var(--bg3); padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
  display: flex !important; 
  flex-direction: column !important;
  position: relative;
}
.testi-card:hover { 
  background: var(--surface); 
  border-color: var(--gold3);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
@keyframes testiMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; line-height: 1; color: var(--gold3); margin-bottom: 20px;
  opacity: 0.6;
}
.testi-text {
  font-size: 16px; font-weight: 300; color: var(--text2);
  line-height: 1.8; margin-bottom: 32px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 700;
  border: 1px solid var(--border2);
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--text); }
.testi-role { font-size: 11px; color: var(--text3); letter-spacing: 0.04em; }
.cta-final {
  background: var(--bg);
  padding: 140px 72px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
.cta-final::after {
  content: 'K';
  font-family: 'Cormorant Garamond', serif;
  font-size: 500px; font-weight: 700;
  color: rgba(255,255,255,0.015);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; line-height: 1;
}
@keyframes pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%     { transform: translate(-50%,-50%) scale(1.1); opacity: 0.7; }
}
.cta-final .section-title { color: var(--text); margin-bottom: 18px; position: relative; z-index: 1; }
.cta-final .section-sub { color: var(--text2); margin: 0 auto 44px; position: relative; z-index: 1; }
.cta-final .section-label { justify-content: center; position: relative; z-index: 1; }
.cta-final .section-label::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.cta-final-btn {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--bg); display: inline-block;
  position: relative; z-index: 1;
}
footer {
  background: var(--bg2);
  padding: 80px 72px 40px;
  color: var(--text3);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 80px; margin-bottom: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { 
  font-size: 28px; 
  display: block; 
  margin-bottom: 16px; 
  color: var(--text);
}
.footer-tagline { 
  font-size: 14px; 
  font-weight: 300; 
  line-height: 1.8; 
  max-width: 280px; 
  color: var(--text2);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  font-size: 14px;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 14px; font-weight: 300; color: var(--text2); text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.01em;
  width: fit-content;
}
.footer-links a:hover { 
  color: var(--gold); 
  transform: translateX(4px);
}
.footer-links a.disabled-link {
  color: var(--text2);
  cursor: default;
  pointer-events: none;
}
.footer-links a.disabled-link:hover {
  transform: none;
  color: var(--text3);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 300;
  color: var(--text3);
}
.footer-copyright {
  display: flex; align-items: center; gap: 8px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--text2);
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  footer { padding: 60px 40px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animated-line {
  height: 1px; background: var(--border);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}
.animated-line.visible { transform: scaleX(1); }
.count-up { display: inline-block; }
@keyframes glimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 2px;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 200;
  transition: border-color 0.3s;
}
.hamburger:hover { border-color: var(--gold); }
.ham-line {
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, width 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open .ham-line-1 { transform: translateY(6px) rotate(45deg); }
.hamburger.open .ham-line-2 { opacity: 0; width: 0; }
.hamburger.open .ham-line-3 { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 150;
  background: rgba(10,12,16,0.97);
  backdrop-filter: blur(24px) saturate(1.5);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 40px;
  text-align: center;
}
.mobile-link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 300;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: -0.5px;
  padding: 12px 0;
  width: 100%; text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s, opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.mobile-link:hover { color: var(--gold); }
.mobile-link:last-child { border-bottom: none; }
.mobile-link-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(201,169,110,0.3) !important;
  padding: 16px 40px !important;
  width: auto !important;
  border-radius: 1px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 100px 28px 64px; align-items: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .hero-actions { justify-content: flex-start; }
  .section { padding: 80px 28px; }
  .steps-grid, .testi-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-section, .pricing-section, .testi-section, .cta-final { padding: 80px 28px; }
  footer { padding: 56px 28px 36px; }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
  .footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 24px; }
  .footer-top > div:not(.footer-brand) { align-items: center; }
  .footer-socials { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-col-title { text-align: center; }
  .section { text-align: left; }
  .section-label { justify-content: flex-start; }
  .section-sub { margin: 0; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .templates-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { grid-column: auto; display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 24px; }
  .footer-top > div:not(.footer-brand) { align-items: center; }
  .footer-links { align-items: center; }
  .footer-col-title { text-align: center; }
  .mobile-link { font-size: 32px; text-align: center; }
  .mobile-menu-inner { text-align: center; }
}
.auth-overlay {
  position: fixed; inset: 0;
  background: rgba(10,12,16,0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; padding: 20px;
  animation: fadeIn 0.4s var(--ease-out);
}
.auth-overlay.hidden { display: none !important; }
.auth-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  width: 100%; max-width: 480px;
  border-radius: 4px; padding: 48px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: revealUp 0.6s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}
.auth-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; border: none;
  color: var(--text3); font-size: 20px; cursor: pointer;
  transition: color 0.3s;
}
.auth-close:hover { color: var(--gold); }
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; margin-bottom: 8px; }
.auth-header p { font-size: 14px; color: var(--text3); }
.auth-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.auth-tabs button {
  flex: 1; padding: 12px; background: transparent; border: none;
  color: var(--text3); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; position: relative;
}
.auth-tabs button.active { color: var(--gold); }
.auth-tabs button.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.auth-panel { display: none; }
.auth-panel.active { display: block; animation: fadeIn 0.4s ease; }
.auth-panel .form-row { grid-template-columns: 1fr; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--text3); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.form-group input {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border2); border-radius: 1px;
  padding: 12px 16px; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: 14px;
  transition: all 0.3s;
}
.form-group input:focus { border-color: var(--gold); outline: none; background: var(--surface); }
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--bg) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text);
  border-color: var(--border2) !important;
  transition: background-color 9999s ease-in-out 0s;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes revealUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.password-wrapper input {
  padding-right: 48px !important;
}
.pass-toggle {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: var(--text2);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 10;
  pointer-events: auto;
}
.pass-toggle:hover {
  opacity: 1;
  color: var(--gold);
}
.pass-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}
::placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
  font-weight: 300;
  letter-spacing: 0.02em;
}
:-ms-input-placeholder { color: rgba(255, 255, 255, 0.2) !important; }
::-ms-input-placeholder { color: rgba(255, 255, 255, 0.2) !important; }