  :root {
    --bg-top: #5c5c72;
    --bg-bottom: #020216;
    --bg-card: #171a24;
    --fg: #f5f5f2;
    --fg-muted: #a3a6b0;
    --border: #2b2e3a;
    --accent: #f17a24;
    --accent-soft: rgba(241, 122, 36, 0.14);
    --accent-gradient: linear-gradient(90deg, #ffc26b 0%, #f17a24 55%, #e85d1f 100%);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 45%);
    background-attachment: fixed;
    background-color: var(--bg-bottom);
    color: var(--fg);
    line-height: 1.75;
  }

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

  img {
    max-width: 100%;
    display: block;
  }

  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Header */
  header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 2, 22, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1080px;
    margin: 0 auto;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .nav-logo img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .nav-brand {
    color: var(--fg-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

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

  .nav-sep {
    color: var(--fg-muted);
    opacity: 0.5;
    font-weight: 400;
  }

  .nav-cta {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-cta:hover {
    background: var(--accent);
    color: #06110f;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .nav-link {
    color: var(--fg-muted);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }

  .nav-link:hover {
    color: var(--fg);
  }

  @media (max-width: 640px) {
    .nav-link { display: none; }
  }

  .lang-toggle {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--fg-muted);
    background: transparent;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .lang-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* Hero */
  .hero {
    padding: 96px 0 64px;
  }

  .hero-lockup {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 56px;
  }

  .hero-lockup img {
    width: clamp(88px, 12vw, 150px);
    height: auto;
    flex-shrink: 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }

  .hero .tagline {
    font-size: clamp(1.05rem, 2.6vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
    display: inline-block;
  }

  @media (max-width: 560px) {
    .hero-lockup {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  }

  .btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    font-weight: 600;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }

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

  .btn-primary {
    background: var(--accent);
    color: #06110f;
  }

  .btn-outline {
    border: 1px solid var(--border);
    color: var(--fg);
  }

  .hero-cta {
    margin-bottom: 40px;
  }

  .hero-cta .btn {
    margin-bottom: 12px;
  }

  .hero-cta-note {
    color: var(--fg-muted);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }

  .hero-version {
    color: var(--fg-muted);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    margin-top: 6px;
  }

  .hero-version a {
    margin-left: 8px;
  }

  .hero-visual img {
    width: 100%;
    height: auto;
  }

  /* Section titles */
  .section {
    padding: 88px 0;
    border-top: 1px solid var(--border);
  }

  .section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
  }

  .section-head p {
    color: var(--fg-muted);
    font-size: 0.98rem;
  }

  /* Features (image + text showcase rows) */
  .feature-row {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 96px;
  }

  .feature-row:last-child {
    margin-bottom: 0;
  }

  .feature-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .feature-row-media {
    flex: 1 1 55%;
    min-width: 0;
    height: 460px;
    display: flex;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 30px 60px -35px rgba(0, 0, 0, 0.55);
  }

  .feature-row-media img {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* first image in a multi-image row gets more space */
  .feature-row-media img:first-child:not(:last-child) {
    flex: 2 1 0;
  }

  @media (max-width: 800px) {
    .feature-row-media { height: 280px; }
  }

  .feature-row-text {
    flex: 1 1 45%;
    min-width: 0;
  }

  .feature-row-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 14px;
  }

  .feature-row-text h3 {
    font-size: clamp(1.25rem, 2.6vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .feature-row-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .feature-row-list li {
    color: var(--accent);
    font-weight: 700;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
  }

  @media (max-width: 800px) {
    .feature-row,
    .feature-row:nth-child(even) {
      flex-direction: column;
      align-items: stretch;
      gap: 28px;
      margin-bottom: 64px;
    }
  }

  /* Pricing */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
  }

  .price-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .price-card.highlight {
    border-color: var(--accent);
    background: linear-gradient(160deg, var(--accent-soft) 0%, var(--bg-card) 45%);
    box-shadow: 0 0 0 1px var(--accent), 0 30px 60px -30px rgba(241, 122, 36, 0.3);
  }

  .price-card-badge {
    position: absolute;
    top: -13px;
    right: 28px;
    background: var(--accent);
    color: #1a0d02;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: 999px;
  }

  .price-card .plan-label {
    font-size: 0.8rem;
    color: var(--fg-muted);
    letter-spacing: 0.05em;
  }

  .price-card .plan-name {
    font-size: 1.15rem;
    font-weight: 700;
  }

  .price-card .plan-price {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 6px 0;
  }

  .plan-price-original {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--fg-muted);
    text-decoration: line-through;
    margin-right: 10px;
  }

  .price-card-badge.discount {
    background: var(--accent-gradient);
    color: #1a0d02;
  }

  .price-card.highlight .plan-price {
    color: var(--accent);
  }

  .price-card .plan-note {
    color: var(--fg-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .pricing-note {
    text-align: center;
    color: var(--fg-muted);
    font-size: 0.8rem;
    margin-top: 24px;
  }

  /* Requirements */
  .req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
  }

  .req-box {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 24px;
  }

  .req-box .req-label {
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
  }

  .req-box .req-value {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .req-box .req-sub {
    color: var(--fg-muted);
    font-size: 0.85rem;
  }

  /* Contact */
  .contact-notice {
    max-width: 560px;
    margin: 0 auto 28px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
  }

  .contact-notice.success {
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    color: var(--fg);
  }

  .contact-notice.error {
    background: rgba(220, 80, 60, 0.12);
    border: 1px solid rgba(220, 80, 60, 0.4);
    color: #ffb3a7;
  }

  .contact-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .form-row label {
    display: block;
    font-size: 0.85rem;
    color: var(--fg-muted);
    margin-bottom: 8px;
  }

  .form-row input,
  .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--fg);
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
  }

  .form-row input:focus,
  .form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
  }

  .contact-form .btn {
    align-self: flex-start;
  }

  /* Footer */
  footer.site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    text-align: center;
    color: var(--fg-muted);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
  }

  .footer-links a {
    color: var(--fg-muted);
  }

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

  @media (max-width: 640px) {
    .hero { padding: 72px 0 48px; }
    .section { padding: 64px 0; }
  }
