:root {
  --orange: #f15a29;
  --orange-dark: #c94116;
  --orange-soft: #ff7448;
  --ink: #0a0b0c;
  --graphite: #111315;
  --graphite-2: #191c1f;
  --graphite-3: #23272a;
  --paper: #f4f1eb;
  --paper-deep: #e8e4dc;
  --white: #fff;
  --muted: #969b9e;
  --line: rgba(255, 255, 255, .1);
  --shadow: 0 24px 70px rgba(0, 0, 0, .22);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: #151719;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--orange); color: white; }

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--orange);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(7, 8, 9, .5);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
}

.brand > span:last-child > span { color: var(--orange); }

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 74% 100%, 0 100%);
}

.brand-mark svg { width: 25px; fill: #111; }

.desktop-nav { display: flex; align-self: stretch; gap: 35px; }

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #b8bbbd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.desktop-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange);
}

.header-actions { display: flex; align-items: center; gap: 20px; }

.freshness {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8bbbd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}

.freshness i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5cd17b;
  box-shadow: 0 0 0 4px rgba(92, 209, 123, .12);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-button span { display: block; height: 2px; margin: 4px 0; background: white; }
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  color: white;
  background: #0b0c0d;
  place-items: center;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, .98) 0%, rgba(8, 9, 10, .88) 38%, rgba(8, 9, 10, .46) 68%, rgba(8, 9, 10, .72) 100%),
    linear-gradient(0deg, #0b0c0d 0%, transparent 28%),
    url("assets/rust-hero.jpg") center 34% / cover no-repeat;
  filter: saturate(.72) contrast(1.1);
  transform: scale(1.02);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 94px;
}

.eyebrow, .section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span { padding: 6px 9px; color: white; background: var(--orange); }
.eyebrow i { width: 28px; height: 1px; background: #777; }

.hero h1 {
  max-width: 760px;
  margin: 24px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .96;
  text-transform: uppercase;
}

.hero h1 em, .guide-copy h2 em, .numbers-grid em {
  color: var(--orange);
  font-style: normal;
}

.hero-content > p {
  max-width: 565px;
  margin: 0;
  color: #b9bdc0;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 12px; margin-top: 35px; }

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background-color .2s, border-color .2s;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); box-shadow: 0 10px 28px rgba(241, 90, 41, .2); }
.button-primary:hover { background: var(--orange-soft); }
.button-ghost { color: white; border-color: rgba(255, 255, 255, .22); background: rgba(12, 13, 14, .45); }
.button-ghost:hover { border-color: rgba(255, 255, 255, .5); }

.trust-list {
  display: flex;
  margin: 42px 0 0;
  padding: 0;
  gap: 27px;
  color: #84898c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  list-style: none;
  text-transform: uppercase;
}

.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list svg { width: 15px; fill: none; stroke: var(--orange); stroke-width: 2.5; }

.hero-stat {
  position: absolute;
  z-index: 2;
  right: max(35px, calc((100% - 1180px) / 2));
  bottom: 50px;
  display: grid;
  padding-left: 20px;
  border-left: 2px solid var(--orange);
}

.hero-stat span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.hero-stat strong { font-family: var(--font-display); font-size: 72px; line-height: 1.08; }
.hero-stat small { color: #8d9295; font-size: 10px; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }

/* Shared headings */
.calculator-section, .raid-table-section, .seo-section, .faq-section { padding: 100px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 42px; }
.section-heading h2, .seo-section h2, .faq-section h2 {
  margin: 10px 0 7px;
  color: #151719;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-heading p, .faq-section > .container > div:first-child > p { margin: 0; color: #71767a; }
.section-index::before { width: 22px; height: 2px; content: ""; background: var(--orange); }

.server-rate { display: grid; gap: 7px; }
.server-rate label { color: #777b7e; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.server-rate select {
  min-width: 170px;
  padding: 12px 34px 12px 14px;
  border: 1px solid #ccc8c0;
  color: #17191b;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  outline: none;
}

/* Calculator */
.calculator-section { background: var(--paper); }
.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(330px, .85fr);
  align-items: start;
  border: 1px solid #d3cfc7;
  box-shadow: var(--shadow);
}

.target-panel { min-width: 0; padding: 34px; background: #f9f7f2; }
.panel-topline, .plan-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.panel-topline h3, .plan-head h3 { margin: 6px 0 0; font-family: var(--font-display); font-size: 26px; font-weight: 600; text-transform: uppercase; }
.step-badge { padding: 4px 7px; color: var(--orange); border: 1px solid rgba(241,90,41,.35); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.step-badge.dark { color: #ffb097; border-color: rgba(255,255,255,.18); }

.search-field {
  display: flex;
  width: min(230px, 45%);
  height: 42px;
  padding: 0 13px;
  align-items: center;
  gap: 9px;
  border: 1px solid #d6d2ca;
  background: #fff;
}
.search-field svg { width: 16px; fill: none; stroke: #8d9092; stroke-width: 1.8; }
.search-field input { width: 100%; border: 0; outline: 0; color: #1a1b1d; background: transparent; font-size: 12px; }

.category-tabs {
  display: flex;
  overflow-x: auto;
  margin: 30px -34px 0;
  padding: 0 34px;
  gap: 6px;
  border-bottom: 1px solid #dedad2;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs button {
  position: relative;
  flex: 0 0 auto;
  padding: 12px 13px 14px;
  border: 0;
  color: #8a8e90;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
}
.category-tabs button::after { position: absolute; right: 10px; bottom: -1px; left: 10px; height: 2px; content: ""; background: transparent; }
.category-tabs button.active { color: var(--orange); }
.category-tabs button.active::after { background: var(--orange); }

.target-grid {
  display: grid;
  min-height: 202px;
  margin: 25px 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.target-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 94px;
  padding: 13px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid #ddd9d1;
  color: #2c2f31;
  background: white;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.target-card:hover { z-index: 1; border-color: #a7aaac; transform: translateY(-2px); box-shadow: 0 9px 22px rgba(27,29,30,.09); }
.target-card.active { border-color: var(--orange); background: #fff8f4; box-shadow: inset 0 0 0 1px var(--orange); }
.target-card.active::after { position: absolute; top: 0; right: 0; width: 20px; height: 20px; content: "✓"; color: white; background: var(--orange); font-size: 10px; font-weight: 800; line-height: 20px; text-align: center; }
.target-card > div:last-child { min-width: 0; }
.target-card strong { display: block; overflow: hidden; font-size: 11px; line-height: 1.35; text-overflow: ellipsis; }
.target-card small { color: #919497; font-size: 9px; }
.target-symbol {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 50px;
  color: #565a5d;
  border: 1px solid #d7d3cc;
  background: #eeece7;
  font-family: var(--font-display);
  font-size: 25px;
  place-items: center;
}
.target-card.active .target-symbol { color: var(--orange); border-color: #ffc5b2; background: white; }
.target-empty { grid-column: 1 / -1; padding: 55px 0; color: #85898c; text-align: center; }

.selection-box { padding: 24px; border: 1px solid #d7d3cb; background: white; }
.selection-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; }
.target-symbol.large { width: 52px; height: 59px; color: var(--orange); font-size: 30px; }
.selection-kicker { color: #a0a2a3; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.selection-header h3 { margin: 2px 0 0; font-size: 14px; line-height: 1.25; }
.selection-header p { margin: 3px 0 0; color: #8c9092; font-size: 10px; }
.side-switch { display: flex; border: 1px solid #ddd9d2; }
.side-switch button { padding: 7px 9px; border: 0; color: #939698; background: transparent; font-size: 8px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.side-switch button.active { color: white; background: #292c2e; }

.soft-side-note { display: flex; margin-top: 18px; padding: 12px; align-items: center; gap: 14px; color: #686c6f; border-left: 3px solid #58a873; background: #f0f7f2; font-size: 9px; line-height: 1.5; }
.soft-side-note strong { flex: 0 0 auto; color: #267845; font-size: 9px; letter-spacing: .08em; }

.method-label-row { display: flex; margin: 24px 0 8px; justify-content: space-between; color: #a0a3a5; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.method-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.method-card {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 9px 10px;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfdcd5;
  color: #303235;
  background: #faf9f6;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.method-card:hover { border-color: #aaa; }
.method-card.active { border-color: var(--orange); background: #fff6f1; box-shadow: inset 0 0 0 1px var(--orange); }
.method-card.best::before { position: absolute; top: -6px; right: 8px; padding: 1px 5px; content: "ВЫГОДНО"; color: white; background: var(--orange); font-size: 6px; font-weight: 800; letter-spacing: .08em; }
.method-card img, .method-combo-icon { width: 34px; height: 34px; object-fit: contain; }
.method-card strong { display: block; overflow: hidden; font-size: 10px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.method-card small { display: block; color: #909395; font-size: 8px; line-height: 1.3; }
.method-price { color: #242628; font-family: var(--font-display); font-size: 13px; font-weight: 600; white-space: nowrap; }
.method-card.active .method-price { color: var(--orange); }
.method-combo-icon { display: grid; color: var(--orange); background: #26292b; font-family: var(--font-display); font-size: 14px; place-items: center; }

.selection-actions { display: flex; margin-top: 19px; align-items: end; justify-content: space-between; gap: 18px; }
.quantity-control { display: grid; gap: 6px; }
.quantity-control > span { color: #9a9da0; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quantity-control > div { display: grid; height: 42px; grid-template-columns: 34px 42px 34px; border: 1px solid #d7d3cb; }
.quantity-control button, .quantity-control input { border: 0; color: #242628; background: white; text-align: center; }
.quantity-control button { font-size: 18px; cursor: pointer; }
.quantity-control input { min-width: 0; border-right: 1px solid #e5e2dc; border-left: 1px solid #e5e2dc; font-size: 11px; font-weight: 800; -moz-appearance: textfield; }
.quantity-control input::-webkit-outer-spin-button, .quantity-control input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.add-button { min-width: 190px; }

/* Plan */
.plan-panel {
  position: sticky;
  top: 90px;
  min-height: 740px;
  padding: 34px 30px;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #17191b;
  background-size: 24px 24px;
}
.plan-head h3 { font-size: 28px; }
.text-button { padding: 0; border: 0; color: #81868a; background: none; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.text-button:hover { color: var(--orange-soft); }
.plan-items { display: grid; min-height: 130px; max-height: 220px; margin: 27px 0 20px; gap: 7px; overflow-y: auto; scrollbar-color: #555 transparent; scrollbar-width: thin; }
.empty-plan { display: grid; color: #686d71; border: 1px dashed #34383b; font-size: 11px; text-align: center; place-items: center; }
.empty-plan svg { width: 28px; margin: 0 auto 7px; fill: none; stroke: #565a5e; stroke-width: 1.5; }
.plan-row { display: grid; padding: 9px; grid-template-columns: 1fr auto auto; align-items: center; gap: 8px; background: rgba(255,255,255,.045); border-left: 2px solid var(--orange); }
.plan-row strong { display: block; font-size: 10px; line-height: 1.3; }
.plan-row small { display: block; color: #7f8589; font-size: 8px; }
.plan-row > span { color: #f1f1f1; font-family: var(--font-display); font-size: 13px; white-space: nowrap; }
.plan-row button { width: 24px; height: 24px; padding: 0; border: 0; color: #797e81; background: transparent; cursor: pointer; }
.plan-row button:hover { color: var(--orange); }

.total-block { padding: 19px 0 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.total-block > span { display: block; color: #8b9093; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.total-block strong { display: block; margin: 2px 0 0; color: var(--orange); font-family: var(--font-display); font-size: 52px; line-height: 1; letter-spacing: -.02em; }
.total-block small { color: #707579; font-size: 9px; }

.resource-grid { display: grid; margin: 20px 0; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.resource-grid > div { padding: 11px 8px; background: rgba(255,255,255,.045); }
.resource-icon { display: grid; width: 20px; height: 20px; float: left; margin: 2px 7px 0 0; border-radius: 3px; font-size: 8px; font-weight: 800; place-items: center; }
.resource-icon.sulfur { color: #2b2400; background: #dccf35; }
.resource-icon.charcoal { color: #d4d6d7; background: #393d40; }
.resource-icon.node { color: #ffb49a; background: #67311f; }
.resource-grid p { margin: 0; color: #777d81; font-size: 7px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.resource-grid strong { display: block; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }

.craft-summary { min-height: 115px; padding: 14px; background: #111315; }
.summary-title { display: flex; margin-bottom: 12px; justify-content: space-between; color: #a5a9ac; font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.summary-title small { color: #555a5e; }
.craft-items { display: flex; flex-wrap: wrap; gap: 8px; }
.craft-pill { display: flex; padding: 5px 8px 5px 5px; align-items: center; gap: 7px; color: #a8adb0; background: #202326; font-size: 8px; }
.craft-pill img { width: 24px; height: 24px; object-fit: contain; }
.craft-pill b { color: white; font-size: 10px; }
.craft-empty { color: #555a5e; font-size: 9px; }

.share-button { width: 100%; margin-top: 15px; color: #d6d8d9; border-color: #3a3e41; background: #202326; }
.share-button:hover { border-color: #5f6467; }
.share-button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.plan-footnote { margin: 12px 5px 0; color: #555a5d; font-size: 8px; line-height: 1.55; text-align: center; }

/* Number strip */
.numbers-strip { padding: 50px 0; color: white; background: var(--orange); }
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr; align-items: center; }
.numbers-grid > div { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.28); }
.numbers-grid > div:first-child { padding-left: 0; border-left: 0; }
.numbers-grid strong { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 600; line-height: 1; }
.numbers-grid span { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.numbers-grid p { margin: 0; font-family: var(--font-display); font-size: 30px; font-weight: 600; line-height: 1.1; text-align: right; text-transform: uppercase; }
.numbers-grid em { color: #222426; }

/* Table */
.raid-table-section { background: #eae6df; }
.split-heading > p { max-width: 410px; font-size: 13px; }
.table-wrap { overflow-x: auto; border: 1px solid #d1cdc5; box-shadow: 0 15px 45px rgba(35,37,38,.08); }
table { width: 100%; min-width: 760px; border-collapse: collapse; background: #f8f6f1; }
th { height: 55px; padding: 0 18px; color: #999c9d; border-bottom: 1px solid #d8d4cc; background: #edeae4; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-align: left; text-transform: uppercase; }
th:not(:first-child), td:not(:first-child) { text-align: center; }
th img { display: inline-block; width: 24px; height: 24px; margin-right: 4px; object-fit: contain; vertical-align: middle; }
td { height: 70px; padding: 10px 18px; color: #5f6467; border-bottom: 1px solid #e1ded7; font-size: 12px; }
tbody tr { transition: background .16s; }
tbody tr:hover { background: white; }
tbody tr:last-child td { border-bottom: 0; }
td:first-child { display: flex; align-items: center; gap: 13px; color: #222426; text-align: left; }
.table-object-icon { display: grid; width: 36px; height: 42px; color: #74787b; background: #dfdcd5; font-size: 18px; place-items: center; }
td b { display: block; color: var(--orange); font-family: var(--font-display); font-size: 16px; }
td small { display: block; color: #9a9d9f; font-size: 8px; }
.table-caption { margin: 18px 0 0; color: #8a8e90; font-size: 10px; text-align: center; }

/* Guide */
.guide-section { padding: 110px 0; color: white; background: #101214; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.section-index.light { color: #ff845d; }
.guide-copy h2 { margin: 15px 0 25px; font-family: var(--font-display); font-size: clamp(42px, 5vw, 62px); font-weight: 600; letter-spacing: -.03em; line-height: 1.04; text-transform: uppercase; }
.guide-copy > p { max-width: 520px; color: #898f93; }
.formula { display: flex; margin: 30px 0; padding: 17px 20px; align-items: center; justify-content: space-between; border: 1px solid #2c3033; background: #171a1c; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.formula strong { color: var(--orange); font-size: 20px; }
.formula b { color: var(--orange); }
.inline-link { display: inline-flex; align-items: center; gap: 20px; padding-bottom: 5px; color: white; border-bottom: 1px solid var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inline-link span { color: var(--orange); font-size: 18px; transition: transform .2s; }
.inline-link:hover span { transform: translateX(4px); }

.guide-cards { display: grid; }
.guide-cards article { display: grid; padding: 25px 0; grid-template-columns: 60px 1fr; gap: 18px; border-top: 1px solid #282c2f; }
.guide-cards article:last-child { border-bottom: 1px solid #282c2f; }
.guide-number { color: var(--orange); font-family: var(--font-display); font-size: 12px; }
.guide-cards h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 25px; font-weight: 500; text-transform: uppercase; }
.guide-cards p { margin: 0; color: #7d8387; font-size: 12px; }

/* SEO */
.seo-section { background: var(--paper); }
.seo-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 110px; align-items: center; }
.seo-section article > p { max-width: 680px; color: #707477; font-size: 13px; }
.tip-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tip-card { min-height: 215px; padding: 24px; color: white; background: #1b1e20; }
.tip-card.orange { background: var(--orange); }
.tip-card > span { font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.tip-card strong { display: block; margin: 46px 0 8px; font-family: var(--font-display); font-size: 28px; font-weight: 600; text-transform: uppercase; }
.tip-card p { margin: 0; color: #a3a8aa; font-size: 10px; line-height: 1.55; }
.tip-card.orange p { color: rgba(255,255,255,.75); }

/* FAQ */
.faq-section { background: #eae6df; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; }
.accordion details { border-top: 1px solid #cbc7bf; }
.accordion details:last-child { border-bottom: 1px solid #cbc7bf; }
.accordion summary { display: flex; padding: 22px 0; align-items: center; justify-content: space-between; font-family: var(--font-display); font-size: 18px; font-weight: 600; list-style: none; text-transform: uppercase; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--orange); font-size: 25px; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 650px; margin: -5px 0 22px; color: #6f7477; font-size: 12px; }

/* Footer */
footer { padding: 52px 0 20px; color: white; background: #0b0c0d; }
.footer-top { display: grid; padding-bottom: 45px; grid-template-columns: 1fr 1fr 1fr; align-items: start; border-bottom: 1px solid #24272a; }
.footer-top > p { margin: 0; color: #6d7276; font-size: 11px; }
.footer-top nav { display: flex; justify-content: flex-end; gap: 26px; }
.footer-top nav a { color: #92979a; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-top nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; padding-top: 18px; justify-content: space-between; color: #555a5d; font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.toast {
  position: fixed;
  z-index: 100;
  right: 25px;
  bottom: 25px;
  padding: 13px 18px;
  color: white;
  border-left: 3px solid var(--orange);
  background: #24272a;
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
  font-size: 11px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.toast.visible { opacity: 1; transform: translateY(0); }
.mobile-total { display: none; }

/* Focus and reduced motion */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }
  .freshness { display: none; }
  .calculator-shell { grid-template-columns: 1.55fr minmax(320px, .9fr); }
  .target-grid { grid-template-columns: repeat(3, 1fr); }
  .method-list { grid-template-columns: 1fr; }
  .guide-grid, .seo-grid { gap: 55px; }
  .tip-stack { grid-template-columns: 1fr; }
  .tip-card { min-height: 160px; }
  .tip-card strong { margin-top: 25px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 720px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav {
    position: absolute;
    top: 76px;
    left: 0;
    display: grid;
    width: 100%;
    padding: 15px 24px 22px;
    gap: 3px;
    border-bottom: 1px solid #292c2e;
    background: #101214;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .2s, transform .2s, visibility .2s;
    visibility: hidden;
  }
  .mobile-nav.open { opacity: 1; transform: translateY(0); visibility: visible; }
  .mobile-nav a { padding: 10px 0; color: #a8adaf; font-size: 11px; font-weight: 800; text-transform: uppercase; }
  .hero { min-height: 720px; }
  .hero-stat { display: none; }
  .calculator-section, .raid-table-section, .seo-section, .faq-section { padding: 75px 0; }
  .calculator-shell { display: block; }
  .target-panel { padding: 28px; }
  .plan-panel { position: static; min-height: auto; }
  .method-list { grid-template-columns: repeat(2, 1fr); }
  .guide-grid, .seo-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-grid p { display: none; }
  .tip-stack { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-top nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 580px) {
  body { padding-bottom: 68px; }
  .container { width: calc(100% - 24px); }
  .site-header { background: rgba(7,8,9,.84); }
  .header-inner { min-height: 66px; }
  .mobile-nav { top: 66px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { min-height: 675px; align-items: center; }
  .hero-content { padding-top: 75px; }
  .hero-backdrop { background-position: 62% center; }
  .hero h1 { margin-top: 20px; font-size: 49px; line-height: .98; }
  .hero-content > p { font-size: 14px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { flex-direction: column; margin-top: 27px; gap: 8px; }
  .calculator-section, .raid-table-section, .seo-section, .faq-section { padding: 60px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; gap: 20px; }
  .section-heading h2, .seo-section h2, .faq-section h2 { font-size: 39px; }
  .server-rate { width: 100%; }
  .server-rate select { width: 100%; }
  .calculator-shell { width: 100%; border-right: 0; border-left: 0; }
  .target-panel { padding: 22px 14px; }
  .panel-topline { align-items: flex-start; flex-direction: column; gap: 15px; }
  .search-field { width: 100%; }
  .category-tabs { margin-right: -14px; margin-left: -14px; padding: 0 14px; }
  .target-grid { min-height: 290px; grid-template-columns: repeat(2, 1fr); }
  .target-card { min-height: 84px; padding: 9px; }
  .target-symbol { flex-basis: 37px; width: 37px; height: 44px; }
  .selection-box { padding: 17px 12px; }
  .selection-header { grid-template-columns: auto 1fr; }
  .side-switch { grid-column: 1 / -1; width: 100%; }
  .side-switch button { flex: 1; }
  .method-list { grid-template-columns: 1fr; }
  .selection-actions { align-items: stretch; flex-direction: column; }
  .quantity-control > div { grid-template-columns: 1fr 1.2fr 1fr; }
  .add-button { width: 100%; }
  .plan-panel { padding: 28px 16px; }
  .resource-grid > div { padding: 9px 6px; }
  .resource-icon { display: none; }
  .numbers-strip { padding: 35px 0; }
  .numbers-grid { text-align: center; }
  .numbers-grid > div { padding-left: 0; }
  .numbers-grid strong { font-size: 37px; }
  .numbers-grid span { font-size: 7px; }
  .split-heading > p { font-size: 11px; }
  .guide-section { padding: 75px 0; }
  .guide-copy h2 { font-size: 42px; }
  .formula { align-items: flex-start; flex-direction: column; gap: 8px; }
  .formula strong { transform: rotate(90deg); }
  .guide-cards article { grid-template-columns: 42px 1fr; }
  .tip-stack { grid-template-columns: 1fr; }
  .faq-grid { gap: 35px; }
  .accordion summary { gap: 18px; font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top nav { grid-column: auto; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .mobile-total {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 68px;
    padding: 9px 12px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #333639;
    color: white;
    background: rgba(16,18,20,.96);
    box-shadow: 0 -10px 35px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
  }
  .mobile-total > div span { display: block; color: #707579; font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-total strong { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; }
  .mobile-total strong b { color: var(--orange); }
  .mobile-total .button { min-height: 43px; padding: 0 15px; }
  .toast { right: 12px; bottom: 80px; left: 12px; text-align: center; }
}