:root {
      --ink: #06111f;
      --ink-2: #0b1d35;
      --red: #e52f36;
      --red-dark: #b50f1d;
      --blue: #1396ff;
      --gold: #f4bc4c;
      --paper: #ffffff;
      --soft: #f4f7fb;
      --line: #dbe4f0;
      --text: #1c2c43;
      --muted: #63758e;
      --shadow: 0 22px 60px rgba(8, 20, 38, .16);
      --radius: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--soft);
      line-height: 1.65;
      overflow-x: hidden;
    }

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

    .topbar {
      background: #111418;
      color: #fff;
    }

    .wrap {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      font-weight: 900;
      letter-spacing: 0;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .22), transparent 34%),
        linear-gradient(135deg, #e52f36 0%, #8b1020 46%, #0794ff 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 12px 30px rgba(3, 15, 35, .24);
    }

    .brand-name {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1;
    }

    .brand-name span {
      color: var(--blue);
    }

    .auth {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }

    .auth a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
      background: #2c4b72;
    }

    .auth a:first-child {
      background: var(--red);
    }

    .nav {
      background: var(--red);
      color: #fff;
      box-shadow: 0 12px 30px rgba(181, 15, 29, .22);
    }

    .nav-inner {
      display: flex;
      min-height: 58px;
      align-items: center;
      gap: 28px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .nav-inner::-webkit-scrollbar {
      display: none;
    }

    .nav a {
      white-space: nowrap;
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .nav a.active {
      color: #fff;
      box-shadow: inset 0 -3px 0 #fff;
      padding: 19px 0 16px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(229, 47, 54, .28), transparent 32%),
        radial-gradient(circle at 80% 24%, rgba(19, 150, 255, .24), transparent 30%),
        linear-gradient(135deg, #081626 0%, #0a1728 42%, #090d16 100%);
      color: #fff;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
      align-items: center;
      gap: 42px;
      min-height: 604px;
      padding: 54px 0 52px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 650px;
      margin-bottom: 22px;
      font-size: clamp(44px, 5vw, 72px);
      line-height: .96;
      letter-spacing: 0;
      font-weight: 950;
    }

    .hero-copy {
      max-width: 590px;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, .78);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 6px;
      border: 1px solid transparent;
      font-weight: 850;
      font-size: 15px;
      text-align: center;
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--red), #ff6b4a);
      color: #fff;
      box-shadow: 0 16px 38px rgba(229, 47, 54, .32);
    }

    .btn.secondary {
      color: #fff;
      border-color: rgba(255, 255, 255, .24);
      background: rgba(255, 255, 255, .08);
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 590px;
      border-top: 1px solid rgba(255, 255, 255, .15);
      border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .hero-points div {
      padding: 18px 20px 17px 0;
      color: rgba(255, 255, 255, .68);
      font-size: 13px;
    }

    .hero-points strong {
      display: block;
      margin-bottom: 2px;
      color: #fff;
      font-size: 24px;
      line-height: 1;
    }

    .hero-visual {
      position: relative;
      align-self: stretch;
      min-height: 500px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #06101d;
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: inherit;
      pointer-events: none;
    }

    .section {
      padding: 70px 0;
      background: var(--paper);
    }

    .section.alt {
      background: #f7f9fd;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
      gap: 52px;
      align-items: start;
    }

    .lead h2,
    .section-head h2 {
      margin-bottom: 18px;
      color: var(--ink);
      font-size: clamp(30px, 3vw, 44px);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 950;
    }

    .lead p,
    .section-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .quick-panel {
      border-radius: var(--radius);
      background: #071423;
      color: #fff;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .quick-panel h3 {
      margin: 0;
      padding: 24px 26px;
      font-size: 24px;
      line-height: 1.1;
      background: linear-gradient(135deg, rgba(229, 47, 54, .9), rgba(19, 150, 255, .72));
    }

    .quick-panel ul {
      margin: 0;
      padding: 8px 26px 26px;
      list-style: none;
    }

    .quick-panel li {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .78);
      font-size: 15px;
    }

    .quick-panel li:last-child {
      border-bottom: 0;
    }

    .quick-panel span {
      color: #fff;
      font-weight: 850;
    }

    .feature-band {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 34px;
    }

    .feature {
      position: relative;
      min-height: 210px;
      padding: 28px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      overflow: hidden;
    }

    .feature::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--red), var(--blue));
    }

    .feature .num {
      display: block;
      margin-bottom: 24px;
      color: var(--red);
      font-size: 14px;
      font-weight: 900;
    }

    .feature h3 {
      color: var(--ink);
      font-size: 24px;
      line-height: 1.14;
      margin-bottom: 12px;
    }

    .feature p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .topic-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .topic-card {
      min-height: 176px;
      padding: 22px;
      border-radius: var(--radius);
      color: #fff;
      background:
        linear-gradient(145deg, rgba(229, 47, 54, .88), rgba(19, 150, 255, .72)),
        #071423;
      box-shadow: 0 18px 46px rgba(8, 20, 38, .12);
    }

    .topic-card strong {
      display: block;
      margin-bottom: 18px;
      font-size: 13px;
      opacity: .72;
    }

    .topic-card h3 {
      margin-bottom: 8px;
      font-size: 21px;
      line-height: 1.16;
    }

    .topic-card p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
      line-height: 1.55;
    }

    .steps {
      display: grid;
      grid-template-columns: .74fr 1.26fr;
      gap: 48px;
      align-items: center;
    }

    .route-card {
      min-height: 420px;
      border-radius: var(--radius);
      padding: 30px;
      color: #fff;
      background:
        linear-gradient(150deg, rgba(229, 47, 54, .82), transparent 46%),
        linear-gradient(340deg, rgba(19, 150, 255, .74), transparent 46%),
        #071423;
      box-shadow: var(--shadow);
    }

    .route-card h2 {
      max-width: 360px;
      color: #fff;
      font-size: clamp(32px, 3vw, 48px);
      line-height: 1.04;
    }

    .route-card p {
      max-width: 360px;
      color: rgba(255, 255, 255, .76);
    }

    .step-list {
      display: grid;
      gap: 16px;
    }

    .step-row {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 22px;
      align-items: center;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .step-row strong {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      color: #fff;
      background: #071423;
      box-shadow: inset 0 -5px 0 rgba(19, 150, 255, .34);
    }

    .step-row h3 {
      margin-bottom: 5px;
      color: var(--ink);
      font-size: 20px;
    }

    .step-row p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
      gap: 34px;
      align-items: start;
    }

    .article-map,
    .faq-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 18px 48px rgba(8, 20, 38, .08);
      overflow: hidden;
    }

    .article-map {
      padding: 30px;
    }

    .article-map h2,
    .faq-panel h2 {
      color: var(--ink);
      font-size: 32px;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .article-map p {
      color: var(--muted);
    }

    .guide-columns {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 24px;
    }

    .guide-columns ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .guide-columns li {
      position: relative;
      padding: 12px 0 12px 24px;
      border-bottom: 1px solid var(--line);
      color: var(--text);
      font-weight: 720;
    }

    .guide-columns li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 21px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--blue));
    }

    .faq-panel h2 {
      margin: 0;
      padding: 28px 28px 18px;
    }

    .faq-item {
      padding: 20px 28px;
      border-top: 1px solid var(--line);
    }

    .faq-item h3 {
      margin-bottom: 7px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.22;
    }

    .faq-item p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .note-strip {
      margin-top: 24px;
      padding: 18px 20px;
      border-left: 4px solid var(--red);
      background: #f7f9fd;
      color: var(--muted);
      font-size: 15px;
    }

    .news-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      margin-bottom: 30px;
    }

    .news-head h2 {
      max-width: 580px;
    }

    .news-list {
      border-top: 1px solid var(--line);
      background: #fff;
    }

    .news-item {
      display: grid;
      grid-template-columns: 130px minmax(0, 1fr) 128px;
      gap: 24px;
      align-items: center;
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
    }

    .thumb {
      width: 130px;
      height: 88px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(229, 47, 54, .95), rgba(19, 150, 255, .82)),
        #071423;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 20px;
      font-weight: 950;
    }

    .news-item h3 {
      margin-bottom: 6px;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.18;
    }

    .news-item p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .date {
      justify-self: end;
      color: var(--red);
      font-weight: 900;
      font-size: 14px;
    }

    .footer {
      padding: 36px 0;
      color: rgba(255, 255, 255, .72);
      background: #111418;
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    @media (max-width: 920px) {
      .wrap {
        width: min(100% - 28px, 720px);
      }

      .topbar-inner {
        min-height: 66px;
      }

      .brand-name {
        font-size: 25px;
      }

      .auth a {
        min-height: 34px;
        padding: 0 12px;
        font-size: 12px;
      }

      .hero-inner,
      .intro-grid,
      .steps,
      .content-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        min-height: auto;
        padding: 44px 0 48px;
        gap: 32px;
      }

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

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

      .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .news-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 16px;
      }

      .thumb {
        width: 92px;
        height: 72px;
        font-size: 16px;
      }

      .date {
        grid-column: 2;
        justify-self: start;
      }
    }

    @media (max-width: 560px) {
      .wrap {
        width: min(362px, calc(100% - 28px));
        margin-left: 14px;
        margin-right: auto;
      }

      .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0 16px;
      }

      .brand-mark {
        width: 46px;
        height: 46px;
      }

      .auth {
        width: 100%;
      }

      .auth a {
        flex: 1 1 0;
        min-width: 0;
      }

      .nav-inner {
        gap: 22px;
      }

      h1 {
        max-width: 100%;
        font-size: 32px;
        line-height: 1.02;
        overflow-wrap: break-word;
      }

      .hero-copy {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
        min-height: 46px;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

      .hero-points div {
        padding: 15px 0;
      }

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

      .section {
        padding: 52px 0;
      }

      .step-row {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 18px;
      }

      .step-row strong {
        width: 48px;
        height: 48px;
      }

      .topic-grid,
      .guide-columns {
        grid-template-columns: 1fr;
      }
    }


    .article-hero {
      color: #fff;
      background:
        linear-gradient(90deg, rgba(229, 47, 54, .26), transparent 34%),
        radial-gradient(circle at 78% 18%, rgba(19, 150, 255, .22), transparent 30%),
        linear-gradient(135deg, #081626 0%, #0a1728 45%, #090d16 100%);
    }

    .article-hero-inner {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
      gap: 42px;
      align-items: center;
      padding: 58px 0;
    }

    .article-hero h1 {
      margin-bottom: 20px;
      font-size: clamp(38px, 4.3vw, 62px);
      line-height: 1.02;
      letter-spacing: 0;
      color: #fff;
    }

    .article-hero p {
      max-width: 660px;
      color: rgba(255, 255, 255, .76);
      font-size: 17px;
    }

    .article-visual {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #06101d;
    }

    .article-visual img {
      width: 100%;
      height: auto;
      aspect-ratio: 1801 / 873;
      object-fit: cover;
      display: block;
    }

    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 38px;
      align-items: start;
    }

    .article-main,
    .article-side {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 18px 48px rgba(8, 20, 38, .08);
    }

    .article-main {
      padding: 38px;
    }

    .article-body h2 {
      margin: 34px 0 14px;
      color: var(--ink);
      font-size: 30px;
      line-height: 1.15;
    }

    .article-body h3 {
      margin: 26px 0 10px;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.2;
    }

    .article-body p {
      color: var(--text);
      font-size: 17px;
    }

    .article-body ul {
      margin: 16px 0 24px;
      padding-left: 22px;
      color: var(--text);
      font-size: 16px;
    }

    .article-body li {
      margin-bottom: 8px;
    }

    .article-side {
      overflow: hidden;
    }

    .article-side h2 {
      margin: 0;
      padding: 24px;
      color: #fff;
      font-size: 24px;
      background: linear-gradient(135deg, rgba(229, 47, 54, .95), rgba(19, 150, 255, .8));
    }

    .side-list {
      padding: 10px 24px 24px;
    }

    .side-list a,
    .side-list span {
      display: block;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      color: var(--text);
      font-weight: 780;
    }

    .side-list a:last-child,
    .side-list span:last-child {
      border-bottom: 0;
    }

    .article-meta {
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 14px;
    }

    .news-item h3 a {
      color: inherit;
    }

    @media (max-width: 920px) {
      .article-hero-inner,
      .article-layout {
        grid-template-columns: 1fr;
      }

    }

    @media (max-width: 560px) {
      .article-main {
        padding: 24px;
      }

      .article-hero h1 {
        font-size: 32px;
      }
    }
