.landing-page {
  --landing-ink: #0b0a09;
  --landing-panel: #131210;
  --landing-panel-soft: #1b1916;
  --landing-paper: #f6f0e6;
  --landing-muted: #aaa39a;
  --landing-line: rgba(255, 250, 240, 0.13);
  --landing-gold: #e7b37c;
  --landing-gold-soft: #f3d0a7;
  overflow-x: hidden;
  color: var(--landing-paper);
  background:
    radial-gradient(circle at 84% 2%, rgba(217, 161, 106, 0.14), transparent 31rem),
    radial-gradient(circle at 8% 30%, rgba(102, 77, 54, 0.12), transparent 26rem),
    var(--landing-ink);
}

.landing-page a:focus-visible,
.landing-page button:focus-visible,
.landing-page input:focus-visible,
.landing-page summary:focus-visible {
  outline: 2px solid var(--landing-gold-soft);
  outline-offset: 4px;
}

.landing-container {
  width: min(100% - 2.4rem, 1180px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: #17100a;
  background: var(--landing-gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  background: rgba(11, 10, 9, 0.78);
  backdrop-filter: blur(22px);
}

.landing-header .header-inner {
  width: min(100% - 2.4rem, 1180px);
  min-height: 76px;
}

.landing-header .brand,
.landing-footer .brand {
  font-size: 0.84rem;
  letter-spacing: 0.2em;
}

.landing-header .brand-mark,
.landing-footer .brand-mark {
  width: 33px;
  height: 33px;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 1.8rem);
}

.landing-nav > a {
  color: #c7c0b6;
  font-size: 0.72rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.landing-nav > a:hover {
  color: var(--landing-paper);
}

.landing-nav .nav-login {
  color: var(--landing-paper);
}

.landing-nav .nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(243, 208, 167, 0.7);
  border-radius: 999px;
  color: #1a110a;
  background: var(--landing-gold-soft);
}

.landing-nav .nav-cta:hover,
.button-primary:hover,
.try-input-row button:hover {
  color: #1a110a;
  background: #ffe0b7;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--landing-line);
  border-radius: 50%;
  color: var(--landing-paper);
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.landing-hero {
  position: relative;
  min-height: 690px;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.landing-page .eyebrow {
  color: var(--landing-gold);
  font-size: 0.64rem;
  letter-spacing: 0.25em;
}

.hero-copy h1 {
  max-width: 670px;
  margin: 1.15rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero-copy h1 em,
.section-heading h2 em,
.workflow-intro h2 em,
.closing-panel h2 em {
  color: var(--landing-gold-soft);
  font-weight: 400;
}

.hero-lead {
  max-width: 520px;
  margin: 1.6rem 0 0;
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button-primary {
  color: #1a110a;
  background: var(--landing-gold-soft);
}

.button-quiet {
  border-color: var(--landing-line);
  color: var(--landing-paper);
  background: rgba(255, 255, 255, 0.035);
}

.button-quiet:hover {
  border-color: rgba(243, 208, 167, 0.42);
  background: rgba(243, 208, 167, 0.08);
  transform: translateY(-2px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  color: #807a72;
  font-size: 0.69rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8d6a4;
  box-shadow: 0 0 0 5px rgba(168, 214, 164, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 550px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  right: 11%;
  bottom: 5%;
  left: 7%;
  height: 27%;
  z-index: -2;
  border-radius: 50%;
  background: rgba(218, 153, 92, 0.26);
  filter: blur(65px);
  content: "";
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(243, 208, 167, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  top: 3%;
  right: 0;
  width: 91%;
  height: 65%;
}

.orbit-two {
  top: 17%;
  right: 7%;
  width: 76%;
  height: 64%;
  border-color: rgba(243, 208, 167, 0.09);
  transform: rotate(18deg);
}

.browser-window {
  position: absolute;
  top: 4%;
  right: 4%;
  width: 90%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: #0d0d0c;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 0 0 0 9px rgba(255, 255, 255, 0.025);
  transform: rotate(2deg);
}

.browser-topbar {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #736e67;
  background: #181715;
}

.browser-topbar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a4742;
}

.browser-topbar > span:first-child {
  background: #aa7561;
}

.browser-topbar small {
  overflow: hidden;
  max-width: 220px;
  margin: 0 auto;
  padding: 4px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.47rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-topbar i {
  width: 13px;
  height: 13px;
  border: 1px solid #625b51;
  border-radius: 50%;
}

.mock-album {
  padding: 1.1rem 1.3rem 1.35rem;
  background:
    radial-gradient(circle at 88% 4%, rgba(217, 161, 106, 0.11), transparent 12rem),
    #10100e;
}

.mock-album-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f5eee3;
  font-size: 0.44rem;
  letter-spacing: 0.18em;
}

.mock-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

.mock-brand b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid var(--landing-gold);
  border-radius: 50%;
  color: var(--landing-gold-soft);
  font-size: 0.55rem;
  letter-spacing: 0;
}

.mock-share {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #aaa39a;
  letter-spacing: 0.02em;
}

.mock-share b {
  color: var(--landing-gold-soft);
  font-size: 0.7rem;
}

.mock-album-heading {
  display: grid;
  justify-items: center;
  gap: 0.33rem;
  margin: 2.7rem auto 1.5rem;
  text-align: center;
}

.mock-album-heading small {
  color: var(--landing-gold);
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.mock-album-heading strong {
  color: #f6f0e6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 3.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.mock-album-heading span {
  color: #817b73;
  font-size: 0.49rem;
}

.mock-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.mock-photo {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  border-radius: 2px;
}

.mock-photo::before,
.mock-photo::after {
  position: absolute;
  content: "";
}

.mock-photo::before {
  width: 58%;
  height: 84%;
  right: -5%;
  bottom: -15%;
  border-radius: 48% 48% 0 0;
  background: rgba(12, 12, 11, 0.56);
  transform: rotate(15deg);
}

.mock-photo::after {
  top: 18%;
  left: 18%;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  background: rgba(245, 224, 198, 0.46);
}

.mock-photo span {
  position: absolute;
  right: 7px;
  bottom: 6px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.55rem;
}

.photo-one { background: linear-gradient(145deg, #b98261, #e4bfa0 47%, #493931); }
.photo-two { background: linear-gradient(145deg, #717a72, #c8c1a9 44%, #34403d); }
.photo-three { background: linear-gradient(145deg, #b99b84, #efd8c0 45%, #6e5b5c); }
.photo-four { background: linear-gradient(145deg, #3a4850, #ad8d78 47%, #d7c2a6); }
.photo-five { background: linear-gradient(145deg, #d1aa87, #735d59 42%, #292d35); }
.photo-six { background: linear-gradient(145deg, #6b7d70, #ded4bd 48%, #aa806c); }

.mock-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  color: #8a8277;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.54rem;
  letter-spacing: 0.05em;
}

.mock-caption span {
  width: 22px;
  height: 1px;
  background: rgba(243, 208, 167, 0.45);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(28, 26, 22, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(14px);
}

.floating-card > span:last-child {
  display: grid;
  gap: 0.2rem;
}

.floating-card b {
  color: var(--landing-paper);
  font-size: 0.64rem;
  white-space: nowrap;
}

.floating-card small {
  color: #8e877d;
  font-size: 0.55rem;
  white-space: nowrap;
}

.floating-icon,
.drive-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #1a110a;
  background: var(--landing-gold-soft);
  font-size: 1rem;
  font-weight: 800;
}

.drive-icon {
  color: #b7d8ae;
  background: rgba(169, 212, 161, 0.14);
  font-size: 0.8rem;
}

.floating-card-share {
  top: 15%;
  left: -4%;
  animation: float-card 5s ease-in-out infinite;
}

.floating-card-drive {
  right: -3%;
  bottom: 11%;
  animation: float-card 5s 1.2s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.proof-strip {
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.018);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--landing-line);
}

.proof-grid > div:first-child {
  padding-left: 0;
}

.proof-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-grid strong,
.feature-number,
.step-count {
  color: var(--landing-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  font-weight: 400;
}

.proof-grid span {
  max-width: 170px;
  color: #b9b1a7;
  font-size: 0.72rem;
  line-height: 1.4;
}

.landing-section {
  padding: clamp(5.5rem, 11vw, 10rem) 0;
}

.story-section {
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(2rem, 9vw, 10rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 0.8rem;
  color: var(--landing-gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker i {
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(231, 179, 124, 0.55);
}

.story-copy h2,
.section-heading h2,
.workflow-intro h2,
.usecase-panel h2,
.try-copy h2,
.faq-heading h2,
.closing-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.story-copy > p {
  max-width: 560px;
  margin: 1.6rem 0 0;
  color: var(--landing-muted);
  line-height: 1.75;
}

.story-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 2.8rem;
}

.contrast-before,
.contrast-after {
  display: grid;
  min-height: 120px;
  align-content: center;
  gap: 0.65rem;
  padding: 1.1rem;
  border: 1px solid var(--landing-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.contrast-before {
  opacity: 0.62;
}

.contrast-after {
  border-color: rgba(231, 179, 124, 0.32);
  background: linear-gradient(145deg, rgba(231, 179, 124, 0.14), rgba(255, 255, 255, 0.025));
}

.story-contrast small {
  color: #817a71;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.story-contrast strong {
  color: var(--landing-paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.15;
}

.contrast-arrow {
  color: var(--landing-gold);
  font-size: 1.3rem;
}

.features-section {
  padding-top: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 30%);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.feature-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(231, 179, 124, 0.1);
  border-radius: 50%;
  content: "";
}

.feature-card-large {
  min-height: 330px;
  background: linear-gradient(145deg, rgba(231, 179, 124, 0.14), rgba(255, 255, 255, 0.02) 60%);
}

.feature-card-wide {
  grid-column: span 2;
  min-height: 220px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.035), rgba(231, 179, 124, 0.08));
}

.feature-number {
  position: relative;
  z-index: 1;
}

.feature-symbol {
  position: absolute;
  top: 1.15rem;
  right: 1.3rem;
  color: var(--landing-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 3rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0.85rem 0 0;
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.feature-mini-browser {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  height: 58px;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(12, 11, 10, 0.66);
}

.feature-mini-browser span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--landing-gold);
  border-radius: 50%;
  color: var(--landing-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.feature-mini-browser b {
  color: var(--landing-paper);
  font-size: 0.57rem;
  letter-spacing: 0.15em;
}

.feature-mini-browser i {
  margin-left: auto;
  color: #817a71;
  font-size: 0.5rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.feature-pills {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-pills span {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(231, 179, 124, 0.28);
  border-radius: 999px;
  color: #c8ad90;
  background: rgba(231, 179, 124, 0.07);
  font-size: 0.62rem;
}

.workflow-section {
  padding-top: clamp(4rem, 9vw, 8rem);
  border-top: 1px solid var(--landing-line);
}

.workflow-intro {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(2rem, 9vw, 10rem);
}

.workflow-intro h2 {
  max-width: 760px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
}

.step-card {
  min-height: 230px;
  padding: 1.35rem 1.2rem 1.6rem;
  border-right: 1px solid var(--landing-line);
}

.step-card:first-child {
  padding-left: 0;
}

.step-card:last-child {
  border-right: 0;
}

.step-card h3 {
  margin: 3.3rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.step-card p {
  max-width: 250px;
  margin: 0.8rem 0 0;
  color: var(--landing-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.usecase-section {
  padding-top: 0;
}

.usecase-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(231, 179, 124, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 100%, rgba(231, 179, 124, 0.18), transparent 22rem),
    linear-gradient(125deg, rgba(231, 179, 124, 0.09), rgba(255, 255, 255, 0.025));
}

.usecase-panel h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.usecase-list {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.usecase-list span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d4ccc2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.usecase-list b {
  color: var(--landing-gold);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
}

.try-section {
  padding-top: clamp(5rem, 10vw, 9rem);
}

.try-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(231, 179, 124, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 20%, rgba(243, 208, 167, 0.17), transparent 18rem),
    #171410;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.try-panel::before {
  position: absolute;
  right: 18%;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(231, 179, 124, 0.12);
  border-radius: 50%;
  content: "";
}

.try-copy,
.try-form,
.link-result {
  position: relative;
  z-index: 1;
}

.try-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.try-copy > p:last-child {
  max-width: 410px;
  margin: 1.3rem 0 0;
  color: var(--landing-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.try-form {
  align-self: center;
}

.try-form label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--landing-paper);
  font-size: 0.73rem;
  font-weight: 750;
}

.try-input-row {
  display: flex;
  gap: 0.55rem;
}

.try-input-row input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  outline: none;
  color: var(--landing-paper);
  background: rgba(255, 255, 255, 0.06);
}

.try-input-row input::placeholder {
  color: #756e65;
}

.try-input-row input:focus {
  border-color: var(--landing-gold);
  box-shadow: 0 0 0 3px rgba(231, 179, 124, 0.12);
}

.try-input-row button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 10px;
  color: #1a110a;
  background: var(--landing-gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.form-error {
  min-height: 1.2em;
  margin: 0.65rem 0 0;
  color: #f0a39b;
  font-size: 0.72rem;
}

.try-note {
  margin: 0.35rem 0 0;
  color: #7c756d;
  font-size: 0.67rem;
}

.try-note a {
  color: #cdb28f;
  text-decoration: none;
}

.try-note a:hover {
  color: var(--landing-gold-soft);
}

.landing-page .link-result {
  grid-column: 2;
  display: grid;
  gap: 0.5rem;
  margin-top: -1rem;
  padding: 1rem;
  border: 1px solid rgba(231, 179, 124, 0.3);
  border-radius: 12px;
  background: rgba(231, 179, 124, 0.08);
}

.result-label {
  color: var(--landing-gold);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.landing-page .link-result > a {
  overflow-wrap: anywhere;
  color: var(--landing-gold-soft);
  font-size: 0.78rem;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.result-actions button,
.result-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.75rem;
  border: 1px solid var(--landing-line);
  border-radius: 999px;
  color: var(--landing-paper);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 750;
  text-decoration: none;
}

.result-actions button:hover,
.result-actions a:hover {
  border-color: rgba(243, 208, 167, 0.5);
  background: rgba(243, 208, 167, 0.08);
}

.faq-section {
  padding-top: clamp(4rem, 9vw, 8rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: clamp(2rem, 9vw, 9rem);
}

.faq-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.faq-list {
  border-top: 1px solid var(--landing-line);
}

.faq-list details {
  border-bottom: 1px solid var(--landing-line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--landing-paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--landing-gold);
  content: "+";
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -0.2rem 0 1.25rem;
  color: var(--landing-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.closing-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--landing-line);
}

.closing-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 1.6rem;
  border: 1px solid var(--landing-gold);
  border-radius: 50%;
  color: var(--landing-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.closing-panel h2 {
  max-width: 800px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.closing-panel .button {
  margin-top: 2rem;
}

.landing-footer {
  border-top: 1px solid var(--landing-line);
}

.footer-inner {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner > span {
  color: #817a71;
  font-size: 0.68rem;
}

.footer-inner > a:last-child {
  color: #c8b095;
  font-size: 0.68rem;
  text-decoration: none;
}

.footer-inner > a:last-child:hover {
  color: var(--landing-gold-soft);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 510px;
    margin: 0 auto;
  }

  .story-grid,
  .workflow-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-kicker {
    margin-bottom: 0.5rem;
  }

  .workflow-intro .section-kicker {
    margin-bottom: 0;
  }

  .faq-grid {
    gap: 3rem;
  }
}

@media (max-width: 720px) {
  .landing-container,
  .landing-header .header-inner {
    width: min(100% - 1.3rem, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .landing-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0.65rem;
    left: 0.65rem;
    display: grid;
    gap: 0;
    padding: 0.45rem;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: rgba(25, 22, 18, 0.97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .landing-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .landing-nav > a {
    padding: 0.85rem 0.75rem;
    border-radius: 9px;
  }

  .landing-nav > a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .landing-nav .nav-cta {
    justify-content: center;
    margin-top: 0.3rem;
  }

  .landing-header .brand > span:last-child,
  .landing-footer .brand > span:last-child {
    display: inline;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .browser-window {
    right: 2%;
    width: 94%;
  }

  .mock-album {
    padding: 0.9rem 0.8rem 1rem;
  }

  .mock-album-heading {
    margin-top: 2rem;
  }

  .mock-photo {
    min-height: 72px;
  }

  .floating-card {
    padding: 0.55rem;
  }

  .floating-card b {
    font-size: 0.56rem;
  }

  .floating-card small {
    font-size: 0.48rem;
  }

  .floating-card-share {
    top: 8%;
    left: 0;
  }

  .floating-card-drive {
    right: 0;
    bottom: 8%;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:last-child {
    min-height: 67px;
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--landing-line);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large,
  .feature-card-wide {
    grid-column: auto;
    min-height: 245px;
  }

  .feature-card-large {
    min-height: 310px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:first-child {
    min-height: 0;
    padding: 1.3rem 0 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--landing-line);
  }

  .step-card:last-child {
    border-bottom: 0;
  }

  .step-card h3 {
    margin-top: 1.5rem;
  }

  .usecase-panel,
  .try-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .try-panel {
    gap: 2.5rem;
  }

  .landing-page .link-result {
    grid-column: auto;
    margin-top: -1.6rem;
  }

  .footer-inner {
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .hero-actions .button,
  .try-input-row {
    width: 100%;
  }

  .hero-actions .button {
    justify-content: center;
  }

  .try-input-row {
    display: grid;
  }

  .try-input-row button {
    justify-content: center;
  }

  .story-contrast {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .contrast-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .hero-visual {
    min-height: 350px;
  }

  .browser-topbar small {
    max-width: 130px;
  }

  .mock-photo {
    min-height: 55px;
  }

  .floating-card-drive,
  .floating-card-share {
    transform: scale(0.86);
  }

  .floating-card-share {
    left: -0.55rem;
  }

  .floating-card-drive {
    right: -0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-card {
    animation: none;
  }
}
