:root {
  --primary: #3F2860;
  --primary-dark: #2a1a40;
  --primary-darker: #1a1030;
  --accent: #FA8B60;
  --accent-dark: #A45B3F;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-faint: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.05);
  --green: #02ad74;
  --red: #e74c3c;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --max-w: 1200px;
  --nav-h: 64px;
  --a1: #f66;
  --a2: #f8d7da;
  --a3: #02ad74;
  --a4: #cfd2d4;
  --a5: #dbeafe;
  --a6: #fff2b2;
  --a7: #ffe580;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text);
  background: var(--primary-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(63, 40, 96, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav__logo-icon {
  font-size: 3px;
  display: flex;
  align-items: center;
}

.letter-wrapper {
  width: 5em;
  height: 5em;
  display: inline-block;
  position: relative;
  margin: 0 0.3em;
}

.letter {
  display: block;
  margin: 0 auto;
}

.l {
  width: 4em;
  height: 5em;
}

.l .bottom {
  display: block;
  width: 4em;
  height: 100%;
  position: absolute;
}

.l .bottom:before {
  content: "";
  position: absolute;
  display: block;
  width: 3em;
  height: 1em;
  left: 1em;
  top: 4em;
  background: var(--accent) linear-gradient(to right, var(--accent-dark), var(--accent) 1em);
}

.l .bottom:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 4em;
  border-top: 0 solid transparent;
  border-right: 1em solid var(--accent);
  border-bottom: 1em solid transparent;
}

.s {
  width: 4em;
  height: 5em;
}

.s .bottom,
.s .middle,
.s .top {
  display: block;
  width: 4em;
  height: 100%;
  position: absolute;
}

.s .bottom:before {
  content: "";
  position: absolute;
  display: block;
  width: 3em;
  height: 1em;
  left: 1em;
  background: var(--accent) linear-gradient(to right, var(--accent-dark), var(--accent) 1em);
}

.s .bottom:after {
  content: "";
  position: absolute;
  display: block;
  width: 2em;
  height: 1em;
  left: 1em;
  top: 2em;
  background: var(--accent) linear-gradient(to right, var(--accent-dark), var(--accent), var(--accent-dark));
}

.s .middle:before {
  content: "";
  position: absolute;
  display: block;
  width: 3em;
  height: 1em;
  left: 0;
  bottom: 0;
  background: var(--accent) linear-gradient(to left, var(--accent-dark), var(--accent) 1em);
}

.s .top:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1em;
  border-top: 1em solid transparent;
  border-right: 1em solid var(--accent);
  border-bottom: 1em solid transparent;
}

.s .top:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1em;
  right: 0;
  bottom: 0;
  border-top: 1em solid transparent;
  border-left: 1em solid var(--accent);
  border-bottom: 1em solid transparent;
}

.nav__wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: rgba(63, 40, 96, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent);
  padding: 14px 28px;
  border-radius: 28px;
  border: 1px solid rgba(250, 139, 96, 0.3);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
}

.floating-cta--top {
  top: 24px;
  bottom: auto;
  transform: translateY(-20px);
  border-radius: 8px;
}

.floating-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  background: rgba(63, 40, 96, 0.92);
  border-color: rgba(250, 139, 96, 0.4);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: var(--primary-darker);
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__top {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 24px;
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  flex-shrink: 0;
}

.footer__status:hover {
  color: var(--accent);
}

.footer__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #02ad74;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  color: var(--text-faint);
  transition: color 0.2s ease;
  display: flex;
}

.footer__social a:hover {
  color: var(--accent);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)) 1;
}

.copyright {
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* index.html */

.hero {
  min-height: 90vh;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-darker) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at 70% 30%, rgba(250, 139, 96, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #FFB088 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: rgba(250, 139, 96, 0.1);
  color: var(--accent);
  border: 1px solid rgba(250, 139, 96, 0.25);
}

.btn--primary:hover {
  background: rgba(250, 139, 96, 0.18);
  border-color: rgba(250, 139, 96, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(250, 139, 96, 0.06);
  border-color: rgba(250, 139, 96, 0.25);
  color: var(--accent);
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.hero__mockup {
  position: relative;
}

.mockup-browser {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mockup-dots {
  background: #e8e8e8;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}

.mockup-dots span:first-child {
  background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
  background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
  background: #27c93f;
}

.mockup-content {
  padding: 24px;
  color: #333;
  font-size: 0.9rem;
  line-height: 2;
}

.mockup-content s {
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 3px;
  font-style: normal;
}

.hl-tech {
  background: var(--a5);
  color: #000;
}

.hl-green {
  background: var(--a3);
  color: #000;
}

.hl-red {
  background: var(--a1);
  color: #000;
}

.hl-bad {
  background: var(--a2);
  color: #000;
}

.hl-term {
  background: var(--a4);
  color: #000;
}

.hl-soft {
  background: var(--a6);
  color: #000;
}

.hl-income {
  background: var(--a7);
  color: #000;
}

.stats {
  background: rgba(250, 139, 96, 0.06);
  border-top: 1px solid rgba(250, 139, 96, 0.12);
  border-bottom: 1px solid rgba(250, 139, 96, 0.12);
  padding: 48px 24px;
}

.stats__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.stats__item {
  text-align: center;
}

.stats__number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 72px 24px;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 64px;
}

.features {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-darker) 50%, var(--primary-dark) 100%);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.feature-block + .feature-block {
  border-top: 1px solid var(--border);
}

.feature-block--reverse .feature-block__visual {
  order: -1;
}

.feature-block__badge {
  display: inline-block;
  background: rgba(250, 139, 96, 0.12);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.feature-block__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-block__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-block__list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.feature-block__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.color-dot--a1 { background: var(--a1); }
.color-dot--a2 { background: var(--a2); }
.color-dot--a3 { background: var(--a3); }
.color-dot--a4 { background: var(--a4); }
.color-dot--a5 { background: var(--a5); }
.color-dot--a6 { background: var(--a6); }
.color-dot--a7 { background: var(--a7); }

.feature-block__visual img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.workflow {
  background: rgba(255, 255, 255, 0.02);
}

.workflow__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.workflow__card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
}

.workflow__card:hover {
  border-color: rgba(250, 139, 96, 0.25);
}

.workflow__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.workflow__card-icon svg {
  width: 100%;
  height: 100%;
}

.workflow__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.workflow__card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.grid-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.grid-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.grid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 139, 96, 0.25);
}

.grid-card__icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.grid-card__icon svg {
  width: 100%;
  height: 100%;
}

.grid-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 16px 0 8px;
}

.grid-card__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.journey {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
}

.journey__chart-wrapper {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 48px;
}

.journey__chart {
  width: 100%;
  height: auto;
}

.journey__anniversary-simple {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 32px;
  line-height: 1.6;
}

#faq .section-title {
  text-align: left;
  max-width: 720px;
  margin: 0 auto 48px;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item summary {
  padding: 20px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 16px;
}

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

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-darker) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(250, 139, 96, 0.15);
  border-bottom: 1px solid rgba(250, 139, 96, 0.15);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(250, 139, 96, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent) 0%, #FFB088 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.btn--inverted {
  background: rgba(250, 139, 96, 0.12);
  color: var(--accent);
  padding: 16px 40px;
  font-size: 1.1rem;
  border: 1px solid rgba(250, 139, 96, 0.3);
}

.btn--inverted:hover {
  background: rgba(250, 139, 96, 0.2);
  border-color: rgba(250, 139, 96, 0.45);
}

.testimonials {
  padding: 72px 24px;
  text-align: center;
  background: var(--primary-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto 32px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
}

.testimonial-card__quote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

/* features.html */

.contrib-hero {
  padding: calc(var(--nav-h) + 48px) 24px 48px;
  text-align: center;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-darker) 100%);
}

.contrib-hero__graph {
  max-width: 800px;
  margin: 0 auto 24px;
}

.contrib-hero__graph svg {
  display: block;
  width: 100%;
  height: auto;
}

.contrib-hero__label {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.contrib-hero__label a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contrib-hero__label a:hover {
  color: var(--text-muted);
}

.contrib-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.contrib-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.feat-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.feat-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.feat-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feat-section__badge {
  display: inline-block;
  background: rgba(250, 139, 96, 0.12);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.feat-section__title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.feat-section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.feat-section__desc + .feat-section__desc {
  margin-top: 12px;
}

.feat-section__list {
  list-style: none;
  margin-top: 16px;
}

.feat-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feat-section__list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 10px;
}

.feat-gallery {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 24px;
}

.feat-gallery__img {
  max-height: 240px;
  width: 0;
  flex: 1 1 0;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.feat-cta {
  text-align: center;
  padding: 64px 24px 80px;
}

.feat-cta__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feat-cta__note {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

.feat-cta__btn,
.reviews-cta__btn,
.manifesto-cta__btn,
.pricing__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(250, 139, 96, 0.1);
  color: var(--accent);
  border: 1px solid rgba(250, 139, 96, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feat-cta__btn:hover,
.reviews-cta__btn:hover,
.manifesto-cta__btn:hover,
.pricing__cta-btn:hover {
  background: rgba(250, 139, 96, 0.18);
  border-color: rgba(250, 139, 96, 0.4);
}

/* privacy.html */

.privacy {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 100px;
}

.privacy__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.privacy__subtitle {
  color: var(--text-faint);
  font-size: 1rem;
  margin-bottom: 56px;
}

.privacy__section {
  margin-bottom: 36px;
}

.privacy__section-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.privacy__section-number {
  color: var(--accent);
  margin-right: 8px;
}

.privacy__section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* reviews.html */

.reviews {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 100px;
}

.reviews__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  line-height: 1.15;
  text-align: center;
}


.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.review-card__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.review-card__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.review-card__info {
  padding: 20px;
}

.review-card__name a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.review-card__name a:hover {
  color: var(--text-muted);
}

.review-card__role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.review-card__quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.reviews-cta {
  text-align: center;
  padding: 48px 24px 80px;
}

.reviews-cta__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.reviews-cta__note {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}


/* status.html */

.status {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 100px;
}

.status__header {
  text-align: center;
  margin-bottom: 60px;
}

.status__message {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 60px;
}

.service__bars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.service__bar {
  flex: 1;
  height: 40px;
  background: var(--green);
  border-radius: 3px;
}

.service__bar-labels {
  font-size: 0.85rem;
  color: var(--text);
  text-align: right;
}

.issue {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.issue__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}

.issue__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.issue__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
}

.issue__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.issue__badge--resolved {
  background: rgba(2, 173, 116, 0.1);
  color: var(--green);
}

.issue__badge-dot--resolved {
  background: var(--green);
}

.issue__description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.issue__tag {
  font-weight: 700;
  color: var(--text);
}

.issue__date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}

/* terms.html */

.terms {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 100px;
}

.terms__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.terms__subtitle {
  color: var(--text-faint);
  font-size: 0.95rem;
  margin-bottom: 56px;
}

.terms__section {
  margin-bottom: 36px;
}

.terms__section-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.terms__section-number {
  color: var(--accent);
  margin-right: 8px;
}

.terms__section p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.terms__section ul {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
}

.terms__section ul li::before {
  content: "\2014\00a0";
  color: var(--accent);
}

.terms__section a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.terms__section a:hover {
  color: var(--text);
}

/* manifesto.html */

.manifesto {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 100px;
}

.manifesto__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  line-height: 1.15;
}

.manifesto__body p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.manifesto__body p:last-child {
  margin-bottom: 0;
}

.manifesto__body strong {
  color: var(--text);
  font-weight: 600;
}

.manifesto__keyword {
  font-weight: 700;
  background: rgba(250, 139, 96, 0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
}

.manifesto__quote {
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.manifesto-cta {
  text-align: center;
  padding: 32px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}

.manifesto-cta__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.manifesto-cta__note {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}


/* pricing.html */

.pricing {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 100px;
}

.pricing__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.pricing__subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 139, 96, 0.25);
}

.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 4px 20px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-card__period {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.pricing-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-card__features {
  list-style: none;
  flex: 1;
}

.pricing-card__features li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}

.pricing-card__btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-top: 24px;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(250, 139, 96, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pricing-card__btn:hover {
  background: rgba(250, 139, 96, 0.1);
  border-color: rgba(250, 139, 96, 0.4);
}

.pricing-card--featured .pricing-card__btn {
  background: rgba(250, 139, 96, 0.12);
  border-color: rgba(250, 139, 96, 0.3);
}

.pricing-card--featured .pricing-card__btn:hover {
  background: rgba(250, 139, 96, 0.2);
  border-color: rgba(250, 139, 96, 0.45);
}

.pricing__cta {
  text-align: center;
}

.pricing__cta-note {
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* Media Queries */

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__mockup {
    max-width: 560px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-block--reverse .feature-block__visual {
    order: 0;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(63, 40, 96, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--border);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__hamburger {
    display: flex;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 40px) 20px 60px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats__inner {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stats__item {
    flex: 0 0 40%;
  }

  .stats__divider {
    display: none;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 32px;
  }

  .workflow__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .section {
    padding: 48px 20px;
  }

  .journey__chart-wrapper {
    padding: 16px;
    overflow-x: auto;
  }

  .journey__chart {
    min-width: 600px;
  }

  .contrib-hero {
    padding: calc(var(--nav-h) + 40px) 20px 32px;
  }

  .feat-content {
    padding: 40px 20px 60px;
  }

  .feat-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .feat-gallery {
    flex-direction: column;
    align-items: center;
  }

  .feat-gallery__img {
    width: 100%;
    flex: none;
  }

  .privacy {
    padding: calc(var(--nav-h) + 40px) 20px 60px;
  }

  .reviews {
    padding: calc(var(--nav-h) + 40px) 20px 60px;
  }

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

  .status {
    padding: calc(var(--nav-h) + 40px) 20px 60px;
  }

  .issue__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .terms {
    padding: calc(var(--nav-h) + 40px) 20px 60px;
  }

  .manifesto {
    padding: calc(var(--nav-h) + 40px) 20px 60px;
  }

  .pricing {
    padding: calc(var(--nav-h) + 40px) 20px 60px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .stats__item {
    flex: 0 0 100%;
  }
}
