@font-face {
  font-family: 'Inter';
  src: url('fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg: #08131a;
  --bg-soft: #0d1d26;
  --bg-panel: rgba(9, 24, 32, 0.78);
  --bg-panel-strong: rgba(8, 20, 27, 0.88);
  --bg-panel-soft: rgba(255, 255, 255, 0.04);

  --text: #eef6f9;
  --text-soft: rgba(238, 246, 249, 0.8);
  --text-muted: rgba(238, 246, 249, 0.58);

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --accent: #47b0c3;
  --accent-hover: #3490a0;
  --accent-soft: rgba(71, 176, 195, 0.14);

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.22);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
  radial-gradient(circle at top, rgba(53, 138, 160, 0.12), transparent 30%),
  linear-gradient(180deg, #08131a 0%, #071117 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
textarea {
  font: inherit;
}

code,
textarea {
  color: var(--text);
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
  hyphens: auto;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: clip;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image,
.hero__shade,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.88;
  filter: saturate(108%) contrast(98%) brightness(0.72);
  transform: scale(1.02);
}

.hero__shade {
  background:
  linear-gradient(
    180deg,
    rgba(4, 10, 14, 0.12) 0%,
                  rgba(4, 12, 17, 0.24) 24%,
                  rgba(5, 14, 19, 0.46) 52%,
                  rgba(7, 18, 24, 0.78) 78%,
                  rgba(7, 18, 24, 1) 100%
  );
}

.hero__glow,
.hero__glow--one,
.hero__glow--two {
  display: none;
}

.hero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 380px);
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 5.5rem;
}

.hero__copy {
  max-width: 42rem;
  padding-top: 2rem;
}

.eyebrow,
.section-head__eyebrow,
.intro-card__eyebrow,
.hero-card__label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(7rem, 10vw, 7.6rem);
  line-height: 0.8;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 34rem;
  margin-top: 1.2rem;
  font-size: clamp(1.02rem, 1.7vw, 1.14rem);
  color: var(--text-soft);
  hyphens: auto;
}

.hero__actions,
.mail-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.92rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition:
  transform 0.18s ease,
  background-color 0.18s ease,
  border-color 0.18s ease,
  color 0.18s ease,
  box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(41, 127, 144, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-hover);
}

.button--ghost,
.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

.button--block {
  flex: 1 1 15rem;
}

/* CARDS */

.hero-card,
.intro-card,
.issue-card,
.mail-card,
.panel {
  border-radius: var(--radius-xl);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-card,
.intro-card,
.mail-card,
.panel {
  padding: 1.5rem;
}

.hero-card {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 380px;
  background: var(--bg-panel-strong);
  box-shadow: var(--shadow-lg);
}

.hero-card h2 {
  margin-bottom: 0.85rem;
}

.hero-card__text,
.hero-card__note,
.issue-card p,
.panel p,
.mail-card__hint,
.panel__small,
.section-head h2 + p {
  color: var(--text-soft);
}

.hero-card__note {
  margin-top: 1rem;
}

.intro-card--strong {
  background:
  linear-gradient(180deg, rgba(11, 28, 37, 0.9) 0%, rgba(8, 20, 27, 0.82) 100%);
}

.check-list,
.quote-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.check-list li,
.quote-list li {
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}

/* MAIN */

main,
.footer {
  position: relative;
  z-index: 3;
  background: transparent;
}

.section {
  padding: 4.75rem 0;
}

.section--surface,
.section--accent {
  background: transparent;
}

.intro-grid,
.two-up,
.action-layout {
  display: grid;
  gap: 1.4rem;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-head h2 + p {
  margin-top: 0.9rem;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.issue-card {
  padding: 1.45rem;
}

.issue-card h3 {
  margin-bottom: 0.8rem;
}

.issue-card__number {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.action-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.mini-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.mini-step {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.mini-step span {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

/* MAIL */

.mail-card__row {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.mail-card__row--body {
  margin-bottom: 1.3rem;
}

.mail-card__label,
.collector__label {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

code,
textarea {
  width: 100%;
  font: inherit;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

code {
  display: block;
  padding: 0.95rem 1rem;
  white-space: pre-wrap;
  word-break: break-word;
}

textarea {
  min-height: 19rem;
  padding: 1rem;
  resize: vertical;
}

.panel--dark {
  background: rgba(255, 255, 255, 0.05);
}

.collector {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.collector__value {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.06rem;
  word-break: break-word;
}

/* FOOTER */

.footer {
  padding: 1.5rem 0 3rem;
}

.footer__inner {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  opacity:0.4;
  text-align:center;
  font-size: 0.7em;
}

.footer__inner:hover {
  opacity:0.7;
}


/* RESPONSIVE */

@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 4rem), var(--container));
  }

  .hero__layout,
  .action-layout,
  .intro-grid,
  .two-up {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    gap: 1.75rem;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .hero-card {
    justify-self: start;
    max-width: 42rem;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 2.5rem), var(--container));
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    object-position: center center;
    opacity: 0.84;
    transform: none;
  }

  .hero__shade {
    background:
    linear-gradient(
      180deg,
      rgba(2, 8, 12, 0.28) 0%,
                    rgba(4, 12, 17, 0.42) 24%,
                    rgba(6, 15, 21, 0.66) 58%,
                    rgba(7, 17, 23, 0.92) 100%
    );
  }

  .hero__layout {
    min-height: 100svh;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
  }

  .hero__copy {
    max-width: 100%;
    padding-top: 0;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 10vw, 3.8rem);
    line-height: 0.96;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
  }

  .hero__actions,
  .mail-card__actions {
    flex-direction: column;
  }

  .button,
  .button--block {
    width: 100%;
  }

  .hero-card {
    max-width: 100%;
    justify-self: stretch;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  textarea {
    min-height: 16rem;
  }
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.phone-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

@media (max-width: 720px) {
  .phone-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .mail-card__actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .button--block {
    flex: none;
    width: 100%;
  }

  .button {
    min-height: 3.2rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 720px) {
  .hero__copy {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 2rem), 100%);
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero__layout {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1.5rem;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
  }

  .hero__copy {
    width: min(100%, 22rem);
    max-width: none;
    padding: 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.7rem, 11vw, 4.2rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }

  .hero__lead {
    max-width: none;
    width: 100%;
    font-size: 1.05rem;
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: pretty;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem;
  }

  .hero__actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero__actions .button,
  .mail-card__actions .button,
  .button--block {
    width: 100%;
    flex: none;
    min-height: 3.2rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .intro-grid,
  .action-layout,
  .two-up,
  .issue-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  textarea {
    min-height: 12rem;
  }

  .phone-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}









@media (max-width: 720px) {
  .hero > .container.hero__layout {
    width: calc(100% - 1.5rem) !important;
    margin: 0 0 0 0.75rem !important;
    padding-top: 4.5rem !important;
    padding-bottom: 2rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .hero__copy {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .hero__copy h1,
  .hero__copy .hero__lead,
  .hero__copy .eyebrow {
    max-width: none !important;
    width: 100% !important;
  }

  .hero__copy h1 {
    font-size: clamp(2.7rem, 11vw, 4rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.04em !important;
  }

  .hero__lead {
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .hero__actions {
    width: 100% !important;
  }

  .hero__actions .button {
    width: 100% !important;
    flex: none !important;
  }
}
