@prefix :       <https://www.a16z.news/p/surviving-ai-price-wars-without-destroying#> .
@prefix schema: <http://schema.org/> .
@prefix skos:   <http://www.w3.org/2004/02/skos/core#> .
@prefix org:    <http://www.w3.org/ns/org#> .
@prefix dbo:    <http://dbpedia.org/ontology/> .
@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl:    <http://www.w3.org/2002/07/owl#> .
@prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .

# ─────────────────────────────────────────────────────────────
# LIGHTWEIGHT ONTOLOGY
# ─────────────────────────────────────────────────────────────

:Industry a rdfs:Class ;
    rdfs:label "Industry Vertical"@en ;
    rdfs:comment "A business vertical impacted by AI application pricing dynamics."@en .

:FinanceIndustry rdfs:subClassOf :Industry ;
    rdfs:label "Finance Industry"@en .

:LogisticsIndustry rdfs:subClassOf :Industry ;
    rdfs:label "Logistics Industry"@en .

:hasLaborTAM a rdf:Property ;
    rdfs:label "Labor Total Addressable Market"@en ;
    rdfs:domain :Industry ;
    rdfs:range xsd:string .

:hasAutomationReadiness a rdf:Property ;
    rdfs:label "Automation Readiness"@en ;
    rdfs:domain :Industry ;
    rdfs:range xsd:string .

# ─────────────────────────────────────────────────────────────
# CORE ENTITIES
# ─────────────────────────────────────────────────────────────

:analysis a schema:CreativeWork ;
    schema:name "Surviving AI Price Wars Without Destroying Your Business"@en ;
    schema:headline "Five things app companies get wrong — and what to do instead"@en ;
    schema:abstract "An analysis of competitive price wars in the AI application layer and five strategic moves for startups to survive through value differentiation, structural pricing creativity, and indispensability."@en ;
    schema:url <https://www.a16z.news/p/surviving-ai-price-wars-without-destroying> ;
    schema:datePublished "2026-04-14"^^xsd:date ;
    schema:author :tugceErten ;
    schema:publisher :a16z ;
    schema:about :aiPriceWarDisruption, :outcomePricing, :buildVsBuy ;
    schema:keywords "AI price war, outcome-based pricing, enterprise AI, build vs buy, proof of concept, premium perception, startup strategy"@en ;
    schema:hasPart :faqSection, :glossarySection, :howtoSection ;
    schema:relatedLink
        <https://a16z.com/investment-list/>,
        <https://a16z.com/disclosures>,
        <https://www.a16z.news/p/it-the-6t-industry-that-silicon-valley>,
        <https://www.a16z.news/p/the-sovereign-wall-why-ais-next-billion>,
        <https://www.a16z.news/p/charts-of-the-week-ventures-300b> .

:tugceErten a schema:Person ;
    schema:name "Tugce Erten"@en ;
    schema:identifier "https://substack.com/@terten" ;
    schema:worksFor :a16z .

:a16z a schema:Organization, org:Organization ;
    schema:name "a16z New Media"@en ;
    schema:url <https://a16z.com> ;
    schema:identifier "https://a16z.com" ;
    rdfs:seeAlso <http://dbpedia.org/resource/Andreessen_Horowitz> .

:elenaVerna a schema:Person ;
    schema:name "Elena Verna"@en ;
    schema:jobTitle "Head of Growth"@en ;
    schema:worksFor :lovable .

:lovable a schema:Organization ;
    schema:name "Lovable"@en ;
    schema:identifier "https://lovable.dev" .

# ─────────────────────────────────────────────────────────────
# DISRUPTION & MARKET DYNAMICS
# ─────────────────────────────────────────────────────────────

:aiPriceWarDisruption a schema:Product ;
    schema:name "AI App Price War Dynamics"@en ;
    schema:description "Hyper-competitive race for enterprise AI market share driven by falling token costs, subsidised distribution, and retaliatory price cuts."@en ;
    schema:featureList
        "Weekly market entry by new AI app competitors"@en ,
        "Investor capital subsidising low-cost distribution"@en ,
        "'Match all competitors' as standard sales playbook"@en ,
        "Cascading price cuts once retaliation begins"@en .

:outcomePricing a schema:Product ;
    schema:name "Outcome-Based Pricing"@en ;
    schema:description "A pricing model that charges per result or workflow outcome rather than per seat, making direct competitor comparison structurally harder."@en .

:marketDisruptionAction a schema:Action ;
    schema:name "Defensive Discounting"@en ;
    schema:description "The act of reducing prices to match competitors — often unnecessary given enterprise budgets — that erodes margin and accelerates price wars."@en .

:buildVsBuy a schema:CreativeWork ;
    schema:name "Build-vs-Buy Calculus"@en ;
    schema:description "The internal economic decision enterprises make between building custom AI tools and purchasing third-party subscriptions, increasingly shifting as inference costs fall."@en .

:pocStrategy a schema:Action ;
    schema:name "POC Discounting Strategy"@en ;
    schema:description "Lowering entry friction through heavily discounted or credit-based proof-of-concept trials delivering 10–25x more value than eventual paid plans."@en .

:premiumPerception a schema:Product ;
    schema:name "Premium Perception"@en ;
    schema:description "The buyer belief that a product is superior, empirically sustaining a 10–20% price premium over direct competitors without materially increasing churn."@en .

# ─────────────────────────────────────────────────────────────
# INDUSTRY VERTICAL INSTANCES
# ─────────────────────────────────────────────────────────────

:financeVertical a :FinanceIndustry ;
    schema:name "Financial Institution Segment"@en ;
    schema:description "Large financial institutions that intentionally deploy 2–3 AI tools per use case as a vendor redundancy policy, splitting core-product builds from non-core purchases."@en ;
    :hasLaborTAM "High" ;
    :hasAutomationReadiness "High" ;
    schema:naics "522110" ;
    schema:identifier "https://www.census.gov/naics/?input=522110&year=2022&details=522110" ;
    rdfs:seeAlso <http://dbpedia.org/resource/Commercial_bank> .

:logisticsVertical a :LogisticsIndustry ;
    schema:name "On-Demand Logistics Platforms"@en ;
    schema:description "B2C logistics companies that expect to move away from third-party AI tools over time as inference costs fall and internal engineering capacity grows."@en ;
    :hasLaborTAM "Significant" ;
    :hasAutomationReadiness "High" ;
    schema:naics "492110" ;
    schema:identifier "https://www.census.gov/naics/?input=492110&year=2022&details=492110" ;
    rdfs:seeAlso <http://dbpedia.org/resource/Courier> .

# ─────────────────────────────────────────────────────────────
# ORGANISATIONS MENTIONED
# ─────────────────────────────────────────────────────────────

:unitedStates a schema:Country ;
    schema:name "United States"@en ;
    schema:identifier "US" .

# ─────────────────────────────────────────────────────────────
# FAQ SECTION — exactly 12 questions
# ─────────────────────────────────────────────────────────────

:faqSection a schema:FAQPage ;
    schema:name "Surviving AI Price Wars — Frequently Asked Questions"@en ;
    schema:mainEntity :q1, :q2, :q3, :q4, :q5, :q6, :q7, :q8, :q9, :q10, :q11, :q12 ;
    schema:isPartOf :analysis .

:q1 a schema:Question ;
    schema:name "What is the most dangerous assumption in an AI price war?"@en ;
    schema:acceptedAnswer :a1 .
:a1 a schema:Answer ;
    schema:text "Assuming customers are fighting on price because they lack budget. Enterprise AI leaders often have pre-allocated budgets and are actively deploying them — the money is there, it is a matter of earning it."@en .

:q2 a schema:Question ;
    schema:name "Why do large enterprises deploy multiple AI tools for the same use case?"@en ;
    schema:acceptedAnswer :a2 .
:a2 a schema:Answer ;
    schema:text "To ensure vendor redundancy and avoid reliance on a single provider for critical workflows. AI apps are still maturing — hallucinations happen, outages are possible — so enterprises hedge with 2–3 tools by design."@en .

:q3 a schema:Question ;
    schema:name "How much of a price premium can strong perception sustain?"@en ;
    schema:acceptedAnswer :a3 .
:a3 a schema:Answer ;
    schema:text "Typically 10–20% above direct competitors without materially increasing churn or creating friction in purchasing."@en .

:q4 a schema:Question ;
    schema:name "What is the dual-model pricing strategy?"@en ;
    schema:acceptedAnswer :a4 .
:a4 a schema:Answer ;
    schema:text "Offering customers a choice between budget predictability (fixed seat pricing) and performance-based upside (gainshare or outcome-based billing), depending on their internal constraints."@en .

:q5 a schema:Question ;
    schema:name "Why should startups discount the proof of concept rather than the product?"@en ;
    schema:acceptedAnswer :a5 .
:a5 a schema:Answer ;
    schema:text "To lower entry friction without eroding the product's long-term value perception. The goal is to win on adoption — getting customers hooked early before market consolidation — not on price."@en .

:q6 a schema:Question ;
    schema:name "What is the real long-term price war threat for AI app companies?"@en ;
    schema:acceptedAnswer :a6 .
:a6 a schema:Answer ;
    schema:text "The customer's internal engineering team. As foundation model inference costs fall, the build-vs-buy calculus shifts and engineering teams increasingly ask whether they can build equivalent solutions themselves."@en .

:q7 a schema:Question ;
    schema:name "What makes an AI tool indispensable during market consolidation?"@en ;
    schema:acceptedAnswer :a7 .
:a7 a schema:Answer ;
    schema:text "Reliability, security posture, onboarding quality, and visible speed of listening and shipping new features. These are the factors that determine which tool survives the consolidation phase."@en .

:q8 a schema:Question ;
    schema:name "How does per-outcome pricing change the competitive conversation?"@en ;
    schema:acceptedAnswer :a8 .
:a8 a schema:Answer ;
    schema:text "It shifts comparisons from cost-per-seat to cost-per-result, making direct price comparison with competitors structurally harder and reframing value delivery around business outcomes."@en .

:q9 a schema:Question ;
    schema:name "What role does freemium play in surviving the AI price war?"@en ;
    schema:acceptedAnswer :a9 .
:a9 a schema:Answer ;
    schema:text "Freemium serves as a marketing expense, not a cost centre. Companies deliver 10–25x more value during POC to win early adoption before market consolidation, as articulated by Elena Verna of Lovable."@en .

:q10 a schema:Question ;
    schema:name "When do enterprises choose to build AI tools rather than buy them?"@en ;
    schema:acceptedAnswer :a10 .
:a10 a schema:Answer ;
    schema:text "For core product functionalities directly tied to their value proposition. Non-core workflows are bought; core workflows (e.g. mortgages at financial institutions) are built in-house — both short and long term."@en .

:q11 a schema:Question ;
    schema:name "What happens to pricing once retaliatory price cuts begin?"@en ;
    schema:acceptedAnswer :a11 .
:a11 a schema:Answer ;
    schema:text "Price cuts cascade. This is great for aware buyers taking advantage, but brutal for competing businesses. The entire category risks forgetting what it was supposed to be worth."@en .

:q12 a schema:Question ;
    schema:name "Is there a silver bullet for surviving AI price wars?"@en ;
    schema:acceptedAnswer :a12 .
:a12 a schema:Answer ;
    schema:text "No. But differentiation that is genuinely expensive to replicate — deep workflow integration, domain-specific training data, continuous model improvement, dedicated customer success, and forward-deployed engineers — provides the strongest structural defence."@en .

# ─────────────────────────────────────────────────────────────
# GLOSSARY — exactly 10 terms
# ─────────────────────────────────────────────────────────────

:glossarySection a skos:ConceptScheme, schema:DefinedTermSet ;
    schema:name "AI Pricing Strategy Glossary"@en ;
    schema:description "Ten defined terms from the AI price war strategic analysis."@en ;
    schema:hasDefinedTerm
        :termPriceWar, :termOutcomePricing, :termPOC,
        :termVendorRedundancy, :termPremiumPerception, :termMarketConsolidation,
        :termBuildVsBuy, :termInferenceCost, :termWorkflowIntegration, :termDifferentiation ;
    schema:isPartOf :analysis .

:termPriceWar a schema:DefinedTerm ;
    schema:name "Price War"@en ;
    schema:description "A period of competitive escalation where companies iteratively cut prices to win or defend market share, often eroding margins for all participants."@en ;
    skos:definition "Sustained competitive price-cutting cycle eroding category-wide margins."@en .

:termOutcomePricing a schema:DefinedTerm ;
    schema:name "Outcome-Based Pricing"@en ;
    schema:description "A model where customers pay based on results delivered — per task completion, workflow executed, or business outcome achieved — rather than per seat or usage input."@en ;
    skos:definition "Charging customers per result rather than per seat or usage."@en .

:termPOC a schema:DefinedTerm ;
    schema:name "Proof of Concept (POC)"@en ;
    schema:description "A time-limited evaluation period used by enterprise buyers to validate an AI application's fitness before committing to a full contract. POCs at large banks can take almost a year."@en ;
    skos:definition "Short-term enterprise trial validating AI application fitness."@en .

:termVendorRedundancy a schema:DefinedTerm ;
    schema:name "Vendor Redundancy"@en ;
    schema:description "The deliberate policy of deploying 2–3 AI tools for the same use case to mitigate risks from hallucinations, outages, or single-vendor failure in critical workflows."@en ;
    skos:definition "Intentional multi-vendor deployment for critical workflow resilience."@en .

:termPremiumPerception a schema:DefinedTerm ;
    schema:name "Premium Perception"@en ;
    schema:description "A buyer's belief that a product is measurably superior, empirically sustaining a 10–20% price premium over direct competitors without materially increasing churn."@en ;
    skos:definition "Buyer perception sustaining a price premium without churn impact."@en .

:termMarketConsolidation a schema:DefinedTerm ;
    schema:name "Market Consolidation"@en ;
    schema:description "The phase where enterprise buyers reduce their experimental AI tool count and standardise on a few survivor applications after initial exploration."@en ;
    skos:definition "Phase where buyers standardise on a small set of proven AI tools."@en .

:termBuildVsBuy a schema:DefinedTerm ;
    schema:name "Build-vs-Buy Calculus"@en ;
    schema:description "The internal economic decision enterprises make between building custom AI solutions and purchasing third-party subscriptions, increasingly shifting toward build as inference costs fall."@en ;
    skos:definition "Internal economic decision between custom build and third-party purchase."@en .

:termInferenceCost a schema:DefinedTerm ;
    schema:name "Inference Cost"@en ;
    schema:description "The cost of running a foundation model API per token or request, which continues to fall due to hardware advances and model efficiency, directly shifting build-vs-buy economics."@en ;
    skos:definition "Per-token cost of executing a foundation model API call."@en .

:termWorkflowIntegration a schema:DefinedTerm ;
    schema:name "Deep Workflow Integration"@en ;
    schema:description "Embedding an AI application directly into a customer's specific business processes at a depth that creates high switching costs and makes replacement costly and risky."@en ;
    skos:definition "Deep embedding in customer processes creating high switching costs."@en .

:termDifferentiation a schema:DefinedTerm ;
    schema:name "Genuine Differentiation"@en ;
    schema:description "Product capabilities that are expensive for customer engineering teams to replicate internally — including domain-specific training data, continuous model improvement, and forward-deployed engineers."@en ;
    skos:definition "Capabilities too expensive for customer engineering teams to replicate."@en .

# ─────────────────────────────────────────────────────────────
# HOWTO — exactly 7 steps
# ─────────────────────────────────────────────────────────────

:howtoSection a schema:HowTo ;
    schema:name "How to Survive an AI Price War"@en ;
    schema:description "A 7-step execution framework derived from direct enterprise buyer conversations across financial, logistics, real estate, hardware, and travel sectors."@en ;
    schema:step :step1, :step2, :step3, :step4, :step5, :step6, :step7 ;
    schema:isPartOf :analysis .

:step1 a schema:HowToStep ;
    schema:name "Price Against Your Value, Not the Competition"@en ;
    schema:text "Recognise that your solution is very different from the customer's status quo even when feature-similar to competitors. Price according to the value you deliver relative to that status quo."@en ;
    schema:position 1 .

:step2 a schema:HowToStep ;
    schema:name "Build for Indispensability, Not Price Competitiveness"@en ;
    schema:text "Focus engineering and customer success resources on becoming the tool buyers cannot imagine removing: reliability, security posture, onboarding quality, and visible speed of building."@en ;
    schema:position 2 .

:step3 a schema:HowToStep ;
    schema:name "Actively Manage Premium Perception Every Quarter"@en ;
    schema:text "Monitor sales cycle length, win/loss rates on competitive deals, and the language prospects use when pushing back on price. When signals shift, your window to respond is short."@en ;
    schema:position 3 .

:step4 a schema:HowToStep ;
    schema:name "Compete on Pricing Unit, Not Pricing Level"@en ;
    schema:text "Experiment with per-outcome, per-workflow, or consumption-based models. A per-outcome model shifts the competitive conversation from cost-per-seat to cost-per-result, making direct price comparison structurally harder."@en ;
    schema:position 4 .

:step5 a schema:HowToStep ;
    schema:name "Discount the POC, Not the Product"@en ;
    schema:text "Make proofs of concept faster to initiate, cheaper to run, and lower in upfront scoping. Deliver 10–25x more value during the POC than in the eventual paid plan. Convert at fair pricing once the evaluation is won."@en ;
    schema:position 5 .

:step6 a schema:HowToStep ;
    schema:name "Win the Internal Build Battle Through Depth"@en ;
    schema:text "Invest in differentiation that is genuinely expensive for customer engineering teams to replicate: deep workflow integration, domain-specific training data, continuous model improvement, and forward-deployed engineers embedded in customer operations."@en ;
    schema:position 6 .

:step7 a schema:HowToStep ;
    schema:name "Offer Dual Pricing Models for Predictability and Upside"@en ;
    schema:text "Let buyers choose between fixed-seat predictability and outcome-based performance upside depending on their internal budget constraints. Letting buyers self-select their model may be the edge that has nothing to do with price."@en ;
    schema:position 7 .
