/* 
  Tiger Tattoo Maker AI Landing
  Color palette (use these variables throughout):
  - Primary accent: #FFFFFF, #ECB131
  - Background: #942820
*/

:root {
  --color-bg: #942820;
  --color-bg-soft: #6f1e18;
  --color-surface: #3a1110;
  --color-accent-gold: #ECB131;
  --color-accent-light: #FFFFFF;
  --color-text-main: #FDF6F2;
  --color-text-muted: #f3d7c8;
  --color-border-soft: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 0 0, #cf5a2f 0, transparent 35%),
    radial-gradient(circle at 100% 100%, #f0a84c 0, transparent 45%),
    var(--color-bg);
}

.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--color-accent-light), transparent 45%),
    radial-gradient(circle at 70% 70%, var(--color-accent-gold), transparent 60%),
    var(--color-surface);
  position: relative;
  overflow: hidden;
}

/* Simple custom SVG-style tiger stripes using pure CSS */
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px 6px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.45);
  border-left-color: transparent;
  border-right-color: transparent;
}

.brand-mark::after {
  inset: 16px 10px;
  border-width: 2px;
  border-top-color: transparent;
}

.brand-text-main {
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-accent-gold),
    var(--color-accent-light)
  );
  transition: width 0.18s ease-out;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.15rem 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--color-accent-light), var(--color-accent-gold));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 1.5rem 0 2.5rem;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 3vw + 1.4rem, 3.1rem);
  line-height: 1.03;
  margin: 0.75rem 0 0.75rem;
}

.hero-emphasis {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.2), transparent 80%);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 32rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  position: relative;
}

.hero-device {
  border-radius: 1.8rem;
  padding: 0.45rem;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(236, 177, 49, 0.6), transparent 65%),
    var(--color-surface);
  box-shadow: 0 18px 45px rgba(8, 1, 0, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-device-frame {
  border-radius: 1.4rem;
  padding: 0.35rem;
  background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.45), transparent 60%),
    var(--color-bg-soft);
  display: flex;
  flex-direction: column;
}

.hero-screen {
  border-radius: 1.05rem;
  background: #0a0504;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screen-placeholder {
  width: 76%;
  height: 76%;
  border-radius: 1.25rem;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  padding: 0.5rem;
}

.hero-screen-stripes {
  position: absolute;
  inset: 12% 18%;
  opacity: 0.65;
}

.hero-screen-stripes span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 18%,
    rgba(236, 177, 49, 0.85) 50%,
    transparent 100%
  );
}

.hero-screen-stripes span:nth-child(1) {
  top: 12%;
  transform: rotate(-7deg);
}

.hero-screen-stripes span:nth-child(2) {
  top: 40%;
  transform: rotate(-3deg);
}

.hero-screen-stripes span:nth-child(3) {
  bottom: 14%;
  transform: rotate(6deg);
}

.hero-device-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.hero-device-accent {
  font-size: 0.65rem;
  color: var(--color-accent-gold);
  text-align: center;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
  align-items: center;
}

.button-primary,
.button-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(
    120deg,
    var(--color-accent-gold),
    var(--color-accent-light)
  );
  color: #3a1300;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.button-primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(17, 5, 4, 0.3);
  color: var(--color-text-main);
}

.button-ghost:hover {
  background: rgba(17, 5, 4, 0.6);
  text-decoration: none;
}

.button-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-subnote {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hero-subnote span {
  color: var(--color-accent-gold);
}

.split-band {
  margin-top: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border-soft);
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.18),
      rgba(236, 177, 49, 0.2)
    )
    border-box;
  padding: 1px;
}

.split-band-inner {
  border-radius: 1.4rem;
  background: radial-gradient(circle at 0 0, #702018, transparent 50%),
    radial-gradient(circle at 100% 100%, #3a1110, transparent 65%),
    rgba(0, 0, 0, 0.6);
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.9fr);
  gap: 2rem;
  align-items: center;
}

.split-band-heading {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.split-band-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.2), transparent 55%),
    rgba(16, 5, 4, 0.9);
  padding: 0.9rem 0.9rem 0.95rem;
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: -0.6rem;
  right: 0.6rem;
  font-size: 2.7rem;
  font-weight: 700;
  color: rgba(236, 177, 49, 0.12);
}

.step-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.3rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-body {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.section {
  margin-top: 3rem;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.4rem;
  margin: 0;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.mood-strip {
  border-radius: 1.2rem;
  padding: 0.9rem 1.1rem 0.9rem;
  border: 1px solid var(--color-border-soft);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(236, 177, 49, 0.06)
    ),
    rgba(9, 3, 2, 0.88);
}

.mood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.mood-chip {
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.3), transparent 55%),
    rgba(148, 40, 32, 0.5);
}

.mood-chip-ghost {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.style-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.style-card {
  border-radius: 1.1rem;
  padding: 0.95rem 0.95rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22), transparent 55%),
    rgba(8, 3, 2, 0.92);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.style-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.76);
}

.style-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.style-body {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.style-strip {
  margin-top: 0.4rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.85),
    rgba(236, 177, 49, 0.9),
    rgba(255, 255, 255, 0.85)
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.journey {
  margin-top: 2.4rem;
  border-radius: 1.4rem;
  padding: 1.3rem 1.2rem 1.2rem;
  border: 1px solid var(--color-border-soft);
  background: radial-gradient(circle at 0 0, #f3c27a, transparent 60%),
    radial-gradient(circle at 100% 0, #f3c27a, transparent 60%),
    rgba(7, 2, 2, 0.95);
  position: relative;
  overflow: hidden;
}

.journey-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 1.6rem;
}

.journey-summary {
  font-size: 0.9rem;
  color: #3d1305;
}

.journey-summary strong {
  color: #1f0802;
}

.journey-rail {
  position: relative;
  padding-left: 1.7rem;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}

.journey-beads {
  position: absolute;
  left: -7px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-bead {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: radial-gradient(circle at 30% 30%, #fff, #f3c27a);
}

.journey-step {
  margin-bottom: 0.75rem;
}

.journey-step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(37, 8, 2, 0.8);
}

.journey-step-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1d0803;
}

.journey-step-body {
  font-size: 0.85rem;
  color: rgba(37, 8, 2, 0.9);
}

.journey-surface {
  border-radius: 1.1rem;
  padding: 0.9rem 0.95rem;
  background: rgba(20, 4, 3, 0.96);
  color: var(--color-text-main);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
}

.journey-surface em {
  color: var(--color-accent-gold);
  font-style: normal;
}

.gallery-band {
  margin-top: 2.4rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border-soft);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(236, 177, 49, 0.14), transparent 60%),
    rgba(5, 1, 0, 0.95);
  padding: 1.1rem 1rem 1.2rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-cell {
  border-radius: 1.1rem;
  padding: 0.6rem;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(15, 3, 2, 0.95);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gallery-device {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.25rem;
  aspect-ratio: 9 / 18;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-screen {
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.3rem;
}

.gallery-caption {
  font-size: 0.74rem;
  color: var(--color-text-muted);
}

.page-main {
  flex: 1;
}

.page-heading-block {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.page-heading-block h1 {
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
}

.page-heading-block p {
  margin: 0;
  max-width: 36rem;
  color: var(--color-text-muted);
}

.legal-card {
  border-radius: 1.2rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--color-border-soft);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 60%),
    rgba(10, 3, 2, 0.95);
}

.legal-card h2 {
  font-size: 1.1rem;
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

.legal-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.legal-list {
  padding-left: 1.1rem;
}

.legal-list li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.8rem;
}

.contact-card {
  border-radius: 1.2rem;
  padding: 1.1rem 1.1rem 1.05rem;
  border: 1px solid var(--color-border-soft);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), transparent 60%),
    rgba(8, 2, 1, 0.96);
}

.contact-card h2 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
}

.contact-meta li + li {
  margin-top: 0.4rem;
}

.contact-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.contact-meta-value {
  font-weight: 500;
}

.contact-form {
  border-radius: 1.2rem;
  padding: 1.1rem 1.1rem 1.05rem;
  border: 1px solid var(--color-border-soft);
  background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.2), transparent 60%),
    rgba(8, 2, 1, 0.96);
}

.contact-form h2 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.form-row label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.form-input,
.form-textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(5, 1, 0, 0.9);
  color: var(--color-text-main);
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.form-submit {
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  padding-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    max-width: 340px;
    margin-inline: auto;
  }

  .split-band-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-column-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .shell {
    padding-inline: 1rem;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.85rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-band-inner {
    padding: 0.9rem 0.9rem 1rem;
  }

  .step-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .style-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .gallery-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

