/*
Source: https://templates.inuno.app
Copyright: 2026 templates.inuno.app
Free template attribution/backlink required.
*/

:root {
  --ink: #111827;
  --muted: #5b6a7c;
  --line: #d9e2ec;
  --soft: #f4f8fb;
  --panel: #ffffff;
  --blue: #0ea5e9;
  --orange: #ff5a1f;
  --green: #18c58f;
  --shadow: 0 24px 60px rgba(17, 24, 39, .14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(14, 165, 233, .2), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(24, 197, 143, .18), transparent 30%),
    linear-gradient(135deg, #f8fbfd, #edf4f8 55%, #f8faf7);
}

a, button {
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

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

a:hover,
a:focus-visible {
  color: #006d9f;
}

button {
  font: inherit;
  cursor: pointer;
}

.site-header {
  width: min(1320px, calc(100% - 48px));
  margin: 24px auto;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(217, 226, 236, .85);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #111827;
  color: #9ee7ff;
  font-weight: 900;
}

.brand:hover span,
.brand:focus-visible span {
  background: var(--blue);
  color: #fff;
}

.site-header nav,
.site-footer nav,
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header nav a {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #334155;
  font-weight: 800;
  background: #fff;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(14, 165, 233, .18);
}

.preview-shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 24px;
  align-items: start;
}

.brief-panel,
.mail-stage,
.text-card {
  border: 1px solid rgba(217, 226, 236, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.brief-panel {
  padding: 34px;
  position: sticky;
  top: 24px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  letter-spacing: 0;
}

.intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.brief-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.brief-list div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.brief-list dt {
  color: #718096;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-list dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-link,
.secondary-link,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 900;
}

.primary-link,
.contact-form button {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 90, 31, .24);
}

.secondary-link {
  border: 1px solid var(--line);
  background: #fff;
  color: #263648;
}

.primary-link:hover,
.primary-link:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: #006d9f;
}

.mail-stage {
  padding: 24px;
  background: linear-gradient(145deg, rgba(17, 24, 39, .92), rgba(31, 55, 75, .86));
}

.device-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8e4ef;
  font-weight: 800;
}

.device-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5a1f;
}

.device-bar span:nth-child(2) { background: #ffd23f; }
.device-bar span:nth-child(3) { background: #18c58f; }
.device-bar strong { margin-left: 10px; }

.email-card {
  width: min(600px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.email-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  background: #111827;
  color: #fff;
  font-weight: 800;
}

.email-topline a {
  color: #9ee7ff;
}

.email-card img {
  display: block;
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.email-body {
  padding: 32px;
}

.tag {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.email-body h2 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.email-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.email-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.email-cta:hover,
.email-cta:focus-visible {
  background: #111827;
  color: #fff;
  transform: translateY(-2px);
}

.email-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.email-grid a {
  min-height: 142px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #f8fafc;
}

.email-grid a:last-child {
  border-right: 0;
}

.email-grid a:hover,
.email-grid a:focus-visible {
  background: #e7f7ff;
  color: var(--ink);
}

.email-grid strong,
.email-grid span {
  display: block;
}

.email-grid span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.content-page {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: stretch;
}

.text-card {
  padding: 42px;
}

.text-card h1 {
  max-width: 840px;
}

.qa-list,
.legal-lines {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.qa-list article,
.legal-lines article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.qa-list h2,
.legal-lines h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.qa-list p,
.legal-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.page-photo {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3a4a5e;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(14, 165, 233, .22);
  border-color: var(--blue);
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 28px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(180, 194, 210, .82);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  color: #526174;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.site-footer nav a {
  color: #526174;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.site-footer p a:hover,
.site-footer p a:focus-visible {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #263648;
  font-weight: 900;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 90, 31, .22);
}

.social-links svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

@media (max-width: 980px) {
  .preview-shell,
  .content-page {
    grid-template-columns: 1fr;
  }

  .brief-panel {
    position: static;
  }

  .page-photo {
    max-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .preview-shell,
  .content-page,
  .site-footer {
    width: min(100% - 28px, 1320px);
  }

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

  .site-header nav a {
    padding: 10px 12px;
  }

  .brief-panel,
  .mail-stage,
  .text-card {
    padding: 20px;
    border-radius: 18px;
  }

  h1 {
    font-size: 42px;
  }

  .email-body {
    padding: 24px;
  }

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

  .email-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
